-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.81 KB
/
Copy pathcomposer.json
File metadata and controls
54 lines (54 loc) · 1.81 KB
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
{
"name": "zenstruck/browser",
"description": "A fluent interface for your Symfony functional tests.",
"homepage": "https://github.com/zenstruck/browser",
"type": "library",
"license": "MIT",
"keywords": ["dev", "test", "symfony"],
"authors": [
{
"name": "Kevin Bond",
"email": "kevinbond@gmail.com"
}
],
"require": {
"php": ">=8.2",
"behat/mink": "^1.8",
"symfony/browser-kit": "^6.4|^7.0|^8.0",
"symfony/css-selector": "^6.4|^7.0|^8.0",
"symfony/dom-crawler": "^6.4|^7.0|^8.0",
"symfony/framework-bundle": "^6.4|^7.0|^8.0",
"zenstruck/assert": "^1.1",
"zenstruck/callback": "^1.4.2"
},
"require-dev": {
"brianium/paratest": "^6.11|^7.0",
"justinrainbow/json-schema": "^5.3",
"mtdowling/jmespath.php": "^2.6",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^9.6.21|^10.4|^11.5|^12.0|^13.0",
"playwright-php/playwright": "^1.4",
"playwright-php/playwright-symfony": "^0.10",
"symfony/console": "^6.4|^7.0|^8.0",
"symfony/mime": "^6.4|^7.0|^8.0",
"symfony/panther": "^1.1|^2.0.1",
"symfony/phpunit-bridge": "^6.4|^7.0|^8.0",
"symfony/security-bundle": "^6.4|^7.0|^8.0"
},
"suggest": {
"justinrainbow/json-schema": "Json schema validator. Needed to use Json::assertMatchesSchema().",
"mtdowling/jmespath.php": "PHP implementation for JMESPath. Needed to use Json assertions."
},
"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
}