forked from symfony/panther
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.41 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
{
"name": "symfony/panther",
"type": "library",
"description": "A browser testing and web scraping library for PHP and Symfony.",
"keywords": ["scraping", "E2E", "testing", "webdriver", "selenium", "symfony"],
"homepage": "https://dunglas.fr",
"license": "MIT",
"authors": [
{
"name": "Kévin Dunglas",
"email": "[email protected]",
"homepage": "https://dunglas.fr"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"require": {
"php": ">=8.0",
"ext-dom": "*",
"ext-libxml": "*",
"php-webdriver/webdriver": "^1.8.2",
"symfony/browser-kit": "^5.3 || ^6.0",
"symfony/dependency-injection": "^5.3 || ^6.0",
"symfony/deprecation-contracts": "^2.4 || ^3",
"symfony/dom-crawler": "^5.3 || ^6.0",
"symfony/http-client": "^5.3 || ^6.0",
"symfony/http-kernel": "^5.3 || ^6.0",
"symfony/process": "^5.3 || ^6.0"
},
"autoload": {
"psr-4": { "Symfony\\Component\\Panther\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Symfony\\Component\\Panther\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-main": "2.0.x-dev"
}
},
"config": {
"sort-packages": true
},
"require-dev": {
"symfony/css-selector": "^5.3 || ^6.0",
"symfony/framework-bundle": "^5.3 || ^6.0",
"symfony/mime": "^5.3 || ^6.0",
"symfony/phpunit-bridge": "^5.3 || ^6.0"
}
}