-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
34 lines (34 loc) · 1.07 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
{
"name": "trappar/alice-generator-bundle",
"description": "Symfony bundle for generating Alice fixtures from Doctrine entities",
"keywords": ["fixture", "data", "test", "orm", "doctrine"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Jeff Way",
"email": "jeff.way@me.com"
}
],
"require": {
"php": "^7.1",
"trappar/alice-generator": "^0.3",
"doctrine/orm": "~2.4",
"doctrine/doctrine-bundle": "^1.6",
"symfony/finder": "^3.0|^4.0",
"symfony/validator": "^3.0|^4.0",
"symfony/console": "^3.0|^4.0",
"symfony/framework-bundle": "^3.0|^4.0",
"symfony/yaml": "^3.0|^4.0"
},
"require-dev": {
"phpunit/phpunit": "^7.1",
"symfony/phpunit-bridge": "^3.0|^4.0",
"matthiasnoback/symfony-dependency-injection-test": "^3.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": { "Trappar\\AliceGeneratorBundle\\": "src/Trappar/AliceGeneratorBundle" }
}
}