forked from sitrunlab/LearnZF2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.05 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
{
"name": "sitrunlab/learnzf2",
"description": "Learn ZF2 website",
"type": "project",
"license": "MIT",
"homepage": "http://learnzf2.sitrun-tech.com/",
"require": {
"php": "^5.5|^7.0",
"zendframework/zendframework": "^2.5.2",
"zendframework/zftool": "dev-master",
"doctrine/doctrine-orm-module": "~0.9.0",
"doctrine/migrations": "~1.1"
},
"require-dev": {
"phpunit/PHPUnit": "4.*",
"sebastian/finder-facade": "~1.1",
"satooshi/php-coveralls": "^1.0",
"codeception/codeception": "^2.1"
},
"scripts": {
"post-install-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
],
"post-update-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev",
"dev-develop": "0.2-dev"
}
},
"autoload-dev": {
"psr-4": {
"LearnZF2AjaxImageGalleryTest\\Controller\\": "test/"
}
}
}