-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
36 lines (36 loc) · 994 Bytes
/
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
{
"name": "sp/fixture-dumper-bundle",
"type": "symfony-bundle",
"description": "Integration of the sp/fixture-dumper library with Symfony2",
"keywords": ["fixture-dumper", "dump", "fixtures"],
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Martin Parsiegla",
"email": "[email protected]",
"homepage": "http://speanet.info"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Spea/SpFixtureDumperBundle/contributors"
}
],
"require": {
"php": ">=5.3.3",
"symfony/framework-bundle": "^2.1",
"sp/fixture-dumper": "^1.0@dev"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": { "Sp\\FixtureDumperBundle": "" }
},
"target-dir": "Sp/FixtureDumperBundle",
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}