forked from Saoneth/laravel-reactphp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.46 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "elgeorge2k/laravel-reactphp",
"type": "library",
"description": "ReactPHP Server for Laravel framework and Lumen framework",
"keywords": ["ReactPHP", "Laravel", "Lumen", "server"],
"homepage": "http://github.com/shakahl/laravel-reactphp",
"license": "MIT",
"authors": [
{
"name": "Soma Szélpál",
"email": "[email protected]",
"homepage": "https://github.com/shakahl"
},
{
"name": "Takuya Sato",
"email": "[email protected]",
"homepage": "https://github.com/nazo"
}
],
"require": {
"php": ">=5.6.4",
"illuminate/bus": "5.4.*|5.4.3",
"illuminate/cookie": "5.4.*|5.4.3",
"illuminate/config": "5.4.*|5.4.3",
"illuminate/console": "5.4.*|5.4.3",
"illuminate/container": "5.4.*|5.4.3",
"illuminate/contracts": "5.4.*|5.4.3",
"illuminate/http": "5.4.*|5.4.3",
"illuminate/log": "5.4.*|5.4.3",
"illuminate/pipeline": "5.4.*|5.4.3",
"illuminate/queue": "5.4.*|5.4.3",
"illuminate/support": "5.4.*|5.4.3",
"react/react": "0.4.*",
"guzzlehttp/guzzle": "~6.2"
},
"require-dev": {
"phpunit/phpunit": "~5.7"
},
"autoload": {
"psr-4": {
"LaravelReactPHP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LaravelReactPHP\\Tests\\": "tests/"
}
}
}