forked from liip/LiipFunctionalTestBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.71 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
47
48
49
50
{
"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.9|^7.0",
"symfony/framework-bundle": "2.3.*|~2.7|~3.0",
"symfony/browser-kit": "~2.3|~3.0",
"doctrine/common": "~2.0"
},
"require-dev": {
"symfony/symfony": "~2.3.1|~2.7|~3.0",
"doctrine/orm": "^2.4.8",
"symfony/assetic-bundle": "~2.3",
"symfony/monolog-bundle": "~2.4",
"doctrine/doctrine-fixtures-bundle": "~2.3",
"phpunit/phpunit": "4.8.*|5.1.*",
"twig/twig": "~1.12",
"nelmio/alice": "~1.7|~2.0"
},
"suggest": {
"symfony/framework-bundle": "To use assertStatusCode and assertValidationErrors ~2.5",
"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",
"nelmio/alice": "Required when using loadFixtureFiles functionality"
},
"autoload": {
"psr-4": {
"Liip\\FunctionalTestBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "1.4.x-dev"
}
}
}