-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 882 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 882 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
33
34
35
36
37
38
39
{
"name" : "zef-dev/zef-mini",
"type" : "library",
"description" : "Mini PHP framework",
"homepage" : "https://github.com/zef-dev/zef-mini",
"version": "0.1.4",
"license" : "MIT",
"require" : {
"php" : "^7.2.5",
"psr/log" : "^1.1.0",
"psr/container" : "^1.0.0",
"psr/http-client" : "^1.0.0",
"psr/http-factory" : "^1.0.0",
"psr/http-message" : "^1.0.1",
"psr/http-server-handler" : "^1.0.0",
"psr/http-server-middleware" : "^1.0.0",
"psr/simple-cache" : "^1.0.0"
},
"autoload" : {
"psr-4" : {
"Zef\\" : "src/Zef"
}
},
"config" : {
"platform" : {
"php" : "7.2.5"
},
"sort-packages" : true
},
"minimum-stability" : "stable",
"autoload-dev" : {
"psr-4" : {
"ZefTest\\" : "test/ZefTest"
}
},
"require-dev" : {
"phpunit/phpunit" : "^8"
}
}