-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 918 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
32
33
34
{
"name": "zendframework/skeleton-application",
"description": "Skeleton Application for ZF2",
"license": "BSD-3-Clause",
"keywords": [
"framework",
"zf2"
],
"homepage": "http://framework.zend.com/",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/chris-fa/zf2behat-extension"
}
],
"require": {
"php": ">=5.5",
"zendframework/zendframework": "~2.5",
"doctrine/doctrine-orm-module": "^0.10.0"
},
"require-dev": {
"behat/behat": "^3.2",
"behat/mink-extension": "^2.2",
"behat/mink": "^1.7",
"behat/mink-zombie-driver": "^1.4",
"zendframework/zend-test": "^2.5",
"chris-fa/zf2behat-extension": "dev-master@dev"
},
"autoload": {
"psr-4": {
"Blog\\AcceptanceTests\\": "feature/application/"
}
}
}