41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
||
"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": "christian@clue.engineering"
|
||
}
|
||
],
|
||
"require": {
|
||
"php": ">=7.1",
|
||
"nikic/fast-route": "^1.3",
|
||
"react/async": "^4 || ^3",
|
||
"react/http": "^1.9",
|
||
"react/promise": "^3 || ^2.10",
|
||
"react/socket": "^1.13"
|
||
},
|
||
"require-dev": {
|
||
"phpstan/phpstan": "1.10.47 || 1.4.10",
|
||
"phpunit/phpunit": "^9.6 || ^7.5",
|
||
"psr/container": "^2 || ^1",
|
||
"react/promise-timer": "^1.10"
|
||
},
|
||
"autoload": {
|
||
"psr-4": {
|
||
"FrameworkX\\": "src/"
|
||
}
|
||
},
|
||
"autoload-dev": {
|
||
"psr-4": {
|
||
"FrameworkX\\Tests\\": "tests/"
|
||
},
|
||
"files": [
|
||
"tests/FiberStub.php"
|
||
]
|
||
}
|
||
}
|