-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.08 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.08 KB
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
{
"name": "thinframe/karma",
"type": "library",
"homepage": "http://thinframe.net",
"description": "Experimental HTTP server written in PHP",
"keywords": ["php", "thinframe", "karma", "http server"],
"license": "MIT",
"authors": [
{
"name": "Sorin Badea",
"email": "sorin.badea91@gmail.com",
"homepage": "http://sorinbadea.me",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.4.0",
"thinframe/foundation": "@stable",
"thinframe/events": "@stable",
"thinframe/applications": "@stable",
"thinframe/command_line": "@stable",
"thinframe/annotations": "@stable",
"thinframe/pcntl": "@stable",
"thinframe/server": "@stable",
"thinframe/inotify": "@stable",
"monolog/monolog": "@stable",
"symfony/routing": "@stable",
"filp/whoops": "dev-master",
"psy/psysh": "dev-master"
},
"autoload": {
"psr-4": {
"ThinFrame\\Karma\\": "src/"
}
}
}