forked from vipsoft/DoctrineDataFixturesExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.16 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
{
"name": "vipsoft/doctrine-data-fixtures-extension",
"type": "library",
"description": "Doctrine data fixtures extension for Behat",
"keywords": ["behat", "bdd", "doctrine", "data fixtures"],
"homepage": "http://github.com/vipsoft/",
"license": "MIT",
"authors": [
{
"name": "Anthon Pang",
"email": "[email protected]",
"role": "developer"
}
],
"require": {
"php": ">=5.3.6",
"behat/behat": "~3.0.6",
"behat/symfony2-extension": "2.0.x-dev",
"doctrine/data-fixtures": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"phpspec/phpspec": "2.1.x-dev",
"doctrine/orm": "~2.2,>=2.2.3",
"doctrine/doctrine-bundle": "~1.2"
},
"suggest": {
"doctrine/migrations": "Uses DBAL to load versioned database schema and migration classes"
},
"autoload": {
"psr-0": { "VIPSoft\\DoctrineDataFixturesExtension": "src/" }
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev",
"dev-2.5": "2.5.x-dev"
}
}
}