forked from frqnck/apix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 920 Bytes
/
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
{
"name": "apix/apix",
"type": "application",
"description": "RESTful API server for structured and self-documenting resources over JSON, XML, ...",
"keywords": ["restful","api","server","web service","framework","json","xml","http","documentation","cors","auth","rest","apix"],
"homepage": "http://github.com/frqnck/apix",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Franck Cassedanne",
"email": "franck@ouarz.net"
}
],
"require": {
"php": ">=5.3",
"apix/log": "1.0.*",
"apix/cache": "1.2.*",
"apix/autoloader": "1.0.*",
"mustache/mustache": "v2.0.2"
},
"require-dev": {
"phpunit/phpunit": "~3.7.0"
},
"autoload": {
"psr-0": { "Apix": "src/php" }
},
"provide": {
"psr/log-implementation": "~1.0",
"psr/cache-implementation": "~1.0"
}
}