-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.4 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "jguittard/zend-expressive-doctrine-api",
"description": "Web API skeleton using Zend Expressive and Doctrine",
"minimum-stability": "stable",
"type": "project",
"homepage": "https://github.com/jguittard/zend-expressive-doctrine-api",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Julien Guittard",
"email": "[email protected]"
}
],
"repositories":[
{
"type": "vcs",
"url": "https://github.com/jguittard/zend-hydrator-doctrine"
}
],
"require": {
"php": "^5.6 || ^7.0",
"roave/security-advisories": "dev-master",
"zendframework/zend-expressive": "^1.0",
"zendframework/zend-expressive-helpers": "^2.0",
"zendframework/zend-expressive-fastroute": "^1.0",
"zendframework/zend-servicemanager": "^2.7.3 || ^3.0",
"zendframework/zend-stdlib": "^2.7 || ^3.0",
"dasprid/container-interop-doctrine": "^0.2",
"ramsey/uuid-doctrine": "^1.2",
"gedmo/doctrine-extensions": "^2.4",
"zendframework/zend-hydrator": "^2.2",
"jguittard/zend-hydrator-doctrine": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"behat/behat": "^3.1",
"phing/phing": "^2.1"
},
"autoload": {
"psr-4": {
"App\\": "src/App/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "test/AppTest/"
}
},
"scripts": {
"serve": "php -S 0.0.0.0:8080 -t public/ public/index.php"
}
}