-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.36 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
{
"name": "gricob/functional-test-bundle",
"description": "Test suit for Symfony projects",
"authors": [
{
"name": "Gerard Rico Botella",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": ">=7.4",
"illuminate/support": "^6.0",
"phpunit/phpunit": "^9.5",
"symfony/browser-kit": "^5.0",
"symfony/css-selector": "^5.0",
"ext-json": "*"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.2",
"symfony/yaml": "^5.0",
"symfony/twig-bundle": "^5.0",
"twig/twig": "^2.10",
"symfony/security-bundle": "^5.0",
"symfony/form": "^5.0",
"symfony/http-foundation": "^5.0",
"symfony/var-dumper": "^5.0",
"symfony/dom-crawler": "^5.0",
"symfony/monolog-bundle": "^3.5",
"league/factory-muffin": "^3.1"
},
"suggest": {
"doctrine/doctrine-fixtures-bundle": "Required to load fixtures",
"twig/twig": "Required to perform twig templates related assertions",
"league/factory-muffin": "Required to create objects using the factory"
},
"autoload": {
"psr-4": {
"Gricob\\FunctionalTestBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}