-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 859 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 859 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
{
"name": "clue/frugal",
"description": "Lightweight microframework for fast, event-driven and async-first web applications, built on top of ReactPHP.",
"keywords": ["microframework", "web", "event-driven", "async", "ReactPHP"],
"homepage": "https://github.com/clue/frugalphp-incubator",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "christian@clue.engineering"
}
],
"require": {
"php": ">=7.1",
"nikic/fast-route": "^1.3",
"react/http": "^1.1",
"react/promise": "^2.7"
},
"require-dev": {
"phpunit/phpunit": "^9.5 || ^7.5"
},
"autoload": {
"psr-4": {
"Frugal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Frugal\\Tests\\": "tests/"
}
}
}