-
Notifications
You must be signed in to change notification settings - Fork 71
/
composer.json
37 lines (37 loc) · 1.01 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": "hounddog/doctrine-data-fixture-module",
"description": "Zend Framework 2 Module that provides Doctrine Data-Fixture functionality",
"type": "library",
"license": "MIT",
"keywords": [
"doctrine",
"data-fixture",
"module",
"zf2"
],
"homepage": "http://www.doctrine-project.org/",
"authors": [
{
"name": "Martin Shwalbe",
"email": "martin.shwalbe@gmail.com"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zend-modulemanager": "2.*",
"zendframework/zend-eventmanager": "2.*",
"zendframework/zend-servicemanager": "2.*",
"doctrine/data-fixtures": "1.1.*",
"doctrine/doctrine-orm-module": "~0.7"
},
"require-dev": {
"phpunit/phpunit" : "3.7.*",
"satooshi/php-coveralls": ">=0.6.0",
"squizlabs/php_codesniffer": "1.4.*"
},
"autoload": {
"psr-0": {
"DoctrineDataFixtureModule": "src/"
}
}
}