forked from zenstruck/browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.25 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
{
"name": "zenstruck/browser",
"description": "A fluent interface for your Symfony functional tests.",
"homepage": "https://github.com/zenstruck/browser",
"type": "library",
"license": "MIT",
"keywords": ["test", "symfony"],
"authors": [
{
"name": "Kevin Bond",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"behat/mink": "^1.8",
"mtdowling/jmespath.php": "^2.6",
"symfony/browser-kit": "^4.4.9|^5.0.9",
"symfony/css-selector": "^4.4|^5.0",
"symfony/framework-bundle": "^4.4|^5.0",
"symfony/polyfill-php80": "^1.20",
"zenstruck/assert": "^1.0",
"zenstruck/callback": "^1.1"
},
"require-dev": {
"dbrekelmans/bdi": "^0.3.0",
"symfony/mime": ">=4.4.1",
"symfony/panther": "^1.0",
"symfony/phpunit-bridge": "^5.2",
"symfony/security-bundle": "^4.4|^5.0"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": { "Zenstruck\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Zenstruck\\Browser\\Tests\\": "tests/" }
},
"minimum-stability": "dev",
"prefer-stable": true
}