-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
36 lines (36 loc) · 1.18 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
{
"name": "leedavis81/drest",
"description": "Create a fully featured REST API service from Doctrine 2 Entity annotations.",
"keywords": ["rest", "api", "doctrine2"],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Lee Davis",
"email": "[email protected]",
"homepage": "http://leedavis81.github.io",
"role": "Developer"
}
],
"require": {
"php": "~5.4|~7.0",
"doctrine/common": "~2.3",
"doctrine/inflector": "~1.0",
"leedavis81/drest-common": "^1.0",
"zendframework/zend-code": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.1",
"doctrine/orm": "~2.3",
"leedavis81/altr-ego": "~1.0",
"symfony/http-foundation": "~2.0"
},
"suggest": {
"symfony/http-foundation": "If you're not using Drest with an existing framework adapters (see documentation) then you MUST include this",
"symfony/yaml": "If you plan on using the YAML driver you MUST include this."
},
"bin": ["bin/drest-server.php"],
"autoload": {
"psr-0": { "Drest\\": "src/", "DrestTests\\": "tests/"}
}
}