-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
30 lines (30 loc) · 1.06 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
{
"name": "braincrafted/testing-bundle",
"type": "symfony-bundle",
"description": "Tools for testing Symfony2 bundles",
"keywords": ["testing"],
"homepage": "http://github.com/braincrafted/testing-bundle",
"license": "MIT",
"authors": [
{
"name": "Florian Eckerstorfer",
"email": "florian@eckerstorfer.co",
"homepage": "http://braincrafted.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.3",
"symfony/symfony": ">=2.6"
},
"require-dev": {
"symfony/doctrine-bridge": "2.3.*",
"doctrine/doctrine-bundle": "~1.0",
"doctrine/data-fixtures": ">=1.0-dev",
"doctrine/doctrine-fixtures-bundle": "dev-master"
},
"autoload": {
"psr-0": { "Braincrafted\\Bundle\\TestingBundle": "" }
},
"target-dir": "Braincrafted/Bundle/TestingBundle"
}