forked from Cocolabs-SAS/DoctrineDataFixturesExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.23 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
{
"name": "vipsoft/doctrine-data-fixtures-extension",
"type": "library",
"description": "Doctrine data fixtures extension for Behat. It is a fork of vipsoft/doctrine-data-fixtures-extension",
"keywords": ["behat", "bdd", "doctrine", "data fixtures"],
"homepage": "http://github.com/vipsoft/",
"license": "MIT",
"authors": [
{
"name": "Anthon Pang",
"email": "[email protected]",
"role": "developer"
},
{
"name": "Cocolabs",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1"
},
"require-dev": {
"behat/behat": "^3.5",
"doctrine/data-fixtures": "^1.3",
"doctrine/doctrine-bundle": "^1.8",
"doctrine/orm": "^2.10",
"friends-of-behat/symfony-extension": "^2.0",
"phpunit/phpunit": "^7.5"
},
"suggest": {
"doctrine/migrations": "Uses DBAL to load versioned database schema and migration classes"
},
"autoload": {
"psr-0": { "VIPSoft\\DoctrineDataFixturesExtension": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev",
"dev-2.5": "2.5.x-dev"
}
}
}