-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 838 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 838 Bytes
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
{
"name": "jdomenechb/reactphp-symfony-server",
"description": "ReactPHP server over Symfony framework",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jordi Domènech",
"email": "jdomenechbborges@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.1",
"react/http": "^0.8.0",
"symfony/http-foundation": "^4.0",
"symfony/console": "^4.0|^5.0",
"symfony/http-kernel": "^4.0|^5.0",
"ralouphie/mimey": "^2.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0"
},
"autoload": {
"psr-4": {
"Jdomenechb\\ReactPhpSymfonyServer\\": "src/"
}
},
"bin": ["bin/reactphp-server"],
"scripts": {
"cs": "vendor/bin/php-cs-fixer fix"
}
}