forked from clue/framework-x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 883 Bytes
/
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
{
"name": "clue/framework-x",
"description": "Framework X – the simple and fast micro framework for building reactive web applications that run anywhere.",
"keywords": ["microframework", "micro", "framework", "web", "http", "event-driven", "async", "ReactPHP"],
"homepage": "https://framework-x.org/",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"nikic/fast-route": "^1.3",
"react/http": "^1.5",
"react/promise": "^2.7"
},
"require-dev": {
"phpunit/phpunit": "^9.5 || ^7.5"
},
"autoload": {
"psr-4": {
"FrameworkX\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FrameworkX\\Tests\\": "tests/"
}
}
}