forked from liip/LiipFunctionalTestBundle
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
58 lines (58 loc) · 2.05 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
51
52
53
54
55
56
57
58
{
"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": "^7.1",
"symfony/framework-bundle": "^3.4 || ^4.0",
"symfony/browser-kit": "^3.4 || ^4.0"
},
"require-dev": {
"symfony/symfony": "^3.4 || ^4.0",
"symfony/phpunit-bridge": "^3.4 || ^4.0",
"doctrine/orm": "^2.6",
"symfony/monolog-bundle": "^3.1",
"doctrine/doctrine-fixtures-bundle": "^3.0.2",
"doctrine/doctrine-bundle": "^1.8",
"phpunit/phpunit": "^6.1 || ^7.0",
"twig/twig": "^2.0",
"theofidry/alice-data-fixtures": "^1.0.1",
"jackalope/jackalope-doctrine-dbal": "^1.3",
"doctrine/data-fixtures": "^1.3"
},
"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",
"theofidry/alice-data-fixtures": "Required when using loadFixtureFiles functionality",
"hautelook/alice-bundle" : "Required when using loadFixtureFiles functionality with custom providers",
"brianium/paratest": "Required when using paratest to parallelize tests"
},
"autoload": {
"psr-4": {
"Liip\\FunctionalTestBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Liip\\FunctionalTestBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}