-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (45 loc) · 1.05 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
{
"name": "adlarge/fixtures-documentation-bundle",
"description": "Fixtures documentation generator",
"keywords": ["fixture", "data", "test"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Arnaud Large"
},
{
"name": "Alain Begey"
}
],
"require": {
"php": "^7.1",
"symfony/asset": "^4.0|^5.0",
"symfony/framework-bundle": "^4.0|^5.0",
"symfony/twig-bundle": "^4.0|^5.0",
"symfony/process": "^4.0|^5.0",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^1.8|^2.0",
"doctrine/doctrine-fixtures-bundle": "^2.4|^3.0",
"ext-json": "*",
"symfony/property-access": "^4.3|^5.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"symfony/phpunit-bridge": "^3.4.5 || ^4.0.5",
"mikey179/vfsstream": "^1.6",
"mockery/mockery": "^1.2"
},
"autoload": {
"psr-4": {
"Adlarge\\FixturesDocumentationBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Adlarge\\FixturesDocumentationBundle\\": [
"tests"
]
}
}
}