-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathcomposer.json
52 lines (52 loc) · 1.34 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
43
44
45
46
47
48
49
50
51
52
{
"name": "webonaute/doctrine-fixtures-generator-bundle",
"description": "Generate Fixture from your existing data in your database. You can specify the Entity name and the IDs you want to import in your fixture.",
"type": "symfony-bundle",
"keywords": [
"development",
"database",
"fixture",
"symfony",
"symfony2",
"symfony4",
"generator",
"dumper",
"doctrine",
"doctrine2",
"tests",
"migration"
],
"license": "MIT",
"authors": [
{
"name": "Mathieu Delisle",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issue": "https://github.com/Webonaute/DoctrineFixturesGeneratorBundle/issues",
"source": "https://github.com/Webonaute/DoctrineFixturesGeneratorBundle"
},
"require": {
"php": ">=7.0",
"symfony/framework-bundle": "~3.4|~4",
"doctrine/orm": ">=2.2",
"doctrine/doctrine-bundle": ">=1.2",
"doctrine/doctrine-fixtures-bundle": ">=2.2"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"symfony/phpunit-bridge": "dev-master",
"phpstan/phpstan": "^0.9.2"
},
"autoload": {
"psr-0": {"Webonaute\\DoctrineFixturesGeneratorBundle": ""}
},
"target-dir": "Webonaute/DoctrineFixturesGeneratorBundle",
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}