-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 1.12 KB
/
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
32
33
34
35
36
37
{
"name": "pointybeard/symphony-api-framework",
"version": "1.0.0",
"description": "JSON renderer and event driven controller interface for Symphony CMS designed to quickly build a RESTful APIs.",
"homepage": "http://alannahkearney.com",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Alannah Kearney",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/pointybeard/api_framework/issues",
"wiki": "https://github.com/pointybeard/api_framework/wiki"
},
"autoload": {
"psr-4": {
"Symphony\\ApiFramework\\": "src",
"Symphony\\ApiFramework\\Controllers\\": "../../workspace/controllers"
},
"files": [
"extension.driver.php"
]
},
"require": {
"php": ">=5.6.6",
"symfony/http-foundation": "^3.0",
"justinrainbow/json-schema": "^5.2",
"pointybeard/symphony-classmapper": "~1.0.0",
"pointybeard/symphony-pdo": "~0.1.0"
},
"require-dev": {
"phpunit/phpunit": "^5"
}
}