-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
composer.json
40 lines (40 loc) · 1.12 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
{
"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/async": "^4.3 || ^3",
"react/http": "^1.11",
"react/promise": "^3.2",
"react/socket": "^1.15"
},
"require-dev": {
"phpstan/phpstan": "1.12.11 || 1.4.10",
"phpunit/phpunit": "^9.6 || ^7.5",
"psr/container": "^2 || ^1",
"react/promise-timer": "^1.11"
},
"autoload": {
"psr-4": {
"FrameworkX\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FrameworkX\\Tests\\": "tests/"
},
"files": [
"tests/FiberStub.php"
]
}
}