-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 746 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 746 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
{
"name": "kosatyi/react-express",
"description": "ReactPHP router written in express.js style",
"homepage": "https://kosatyi.com/react-express/",
"license": "MIT",
"authors": [
{
"name": "Stepan Kosatyi",
"email": "stepan@kosatyi.com"
}
],
"require": {
"ext-json": "*",
"react/event-loop": "^0.4.3",
"react/http": "^0.8.1",
"wyrihaximus/react-http-middleware-session": "^1.0",
"symfony/yaml": "^4.3"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"php-coveralls/php-coveralls": "^2.0"
},
"autoload": {
"psr-4": {
"ReactExpress\\": "src/",
"App\\": "app/"
}
}
}