forked from liip/LiipFunctionalTestBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.19 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.19 KB
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
{
"name": "liip/functional-test-bundle",
"description": "This bundles provides additional functional test-cases for Symfony2 applications",
"keywords": ["symfony2"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Liip AG",
"homepage": "http://www.liip.ch/"
},
{
"name": "Community contributions",
"homepage": "https://github.com/liip/LiipFunctionalTestBundle/contributors"
}
],
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": ">=2.0,<2.4-dev",
"doctrine/common": "2.*"
},
"suggest": {
"doctrine/doctrine-fixtures-bundle": "Required when using the fixture loading functionality",
"doctrine/orm": "Required when using the fixture loading functionality with an ORM and SQLite",
"doctrine/dbal": "Required when using the fixture loading functionality with an ORM and SQLite"
},
"autoload": {
"psr-0": {
"Liip\\FunctionalTestBundle": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"target-dir" : "Liip/FunctionalTestBundle"
}