-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.39 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
{
"name": "guikingone/panther-extension",
"type": "library",
"description": "Panther extension for Mink",
"keywords": ["web", "driver", "browser", "panther", "mink", "extension"],
"license": "MIT",
"authors": [
{
"name": "Guillaume Loulier",
"email": "[email protected]"
}
],
"require": {
"ext-zip": "*",
"php": ">=7.1",
"behat/behat": "^3.0.5",
"behat/mink": "^1.5",
"behat/mink-extension": "^2.0",
"symfony/config": "^3.0|^4.0|^5.0",
"symfony/panther": "^0.7.1"
},
"require-dev": {
"infection/infection": "^0.13.6",
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^7.5",
"phpstan/phpstan": "^0.12.23"
},
"autoload": {
"psr-4": {
"PantherExtension\\": "src/",
"PantherExtension\\Context\\": "src/Context/",
"PantherExtension\\Driver\\": "src/Driver/",
"PantherExtension\\Driver\\Element\\": "src/Driver/Element/",
"PantherExtension\\Driver\\Exception\\": "src/Driver/Exception/",
"PantherExtension\\Driver\\Helper\\": "src/Driver/Helper/",
"PantherExtension\\Extension\\": "src/Extension/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Tests\\Context\\": "tests/Context/",
"Tests\\Driver\\": "tests/Driver/",
"Tests\\Driver\\Helper\\": "tests/Driver/Helper/",
"Tests\\Extension\\": "tests/Extension/"
}
}
}