-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 1.02 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
{
"name": "gamma/fixtures-boost-bundle",
"type": "symfony-bundle",
"description": "Provides a command line task to speed up fixtures loading",
"keywords": ["fixtures", "dump", "load", "testing"],
"homepage": "https://github.com/smart-gamma/fixtures-boost-bundle",
"license": "MIT",
"authors": [
{
"name": "Evgen Kuzmin",
"homepage": "https://github.com/Evgenas"
},
{
"name": "Dmytro Monastyreckyi",
"homepage": "https://github.com/orgs/smart-gamma/people/monobook"
}
],
"require": {
"symfony/framework-bundle": "~2.3",
"doctrine/doctrine-bundle": "~1.4",
"doctrine/orm": "~2.2,>=2.2.3,<2.5",
"doctrine/doctrine-fixtures-bundle": "~2.2"
},
"require-dev": {
"symfony/console": "~2.3",
"phpspec/phpspec": "^2.4"
},
"autoload": {
"psr-4": {
"Gamma\\FixturesBoostBundle\\": "src/Gamma/FixturesBoostBundle"
}
}
}