-
Notifications
You must be signed in to change notification settings - Fork 180
/
composer.json
65 lines (65 loc) · 2.09 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
59
60
61
62
63
64
65
{
"name": "liip/functional-test-bundle",
"description": "This bundles provides additional functional test-cases for Symfony applications",
"keywords": ["symfony", "testing"],
"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.4 || ^8.0",
"phpunit/phpunit": "^9.6 || ^10.0 || ^11.0",
"symfony/browser-kit": "^5.4 || ^6.4 || ^7.0",
"symfony/framework-bundle": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"ext-json": "*",
"doctrine/annotations": "^1.3 || ^2.0",
"doctrine/doctrine-bundle": "^2.11",
"doctrine/orm": "^2.7",
"monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
"symfony/css-selector": "^5.4 || ^6.4 || ^7.0",
"symfony/doctrine-bridge": "^5.4 || ^6.4 || ^7.0",
"symfony/form": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0",
"symfony/monolog-bundle": "^3.4",
"symfony/security-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/twig-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/validator": "^5.4 || ^6.4 || ^7.0",
"symfony/yaml": "^5.4 || ^6.4 || ^7.0",
"twig/twig": "^2.0 || ^3.8"
},
"conflict": {
"symfony/framework-bundle": "4.3.0"
},
"suggest": {
"doctrine/annotations": "Required to use the @QueryCount(…) annotation",
"liip/test-fixtures-bundle": "Efficient loading of Doctrine fixtures in functional test-cases for Symfony applications"
},
"autoload": {
"psr-4": {
"Liip\\FunctionalTestBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Liip\\Acme\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
}
}