-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 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
38
39
40
{
"name": "miaou-corp/fixture-loader-bundle",
"description": "Manage Nelmio Alice fixtures with Doctrine.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Gary PEGEOT",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0",
"nelmio/alice": "^3.2",
"symfony/finder": "~2.8|~3.0|~4.0"
},
"require-dev": {
"doctrine/orm": "^2.4",
"symfony/config": "~2.8|~3.0|~4.0",
"symfony/dependency-injection": "~2.8|~3.0|~4.0",
"symfony/http-kernel": "~2.8|~3.0|~4.0",
"symfony/phpunit-bridge": "^4.0"
},
"autoload": {
"psr-4": {
"MiaouCorp\\Bundle\\FixtureLoaderBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MiaouCorp\\Bundle\\FixtureLoaderBundle\\Tests\\": "tests"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}