forked from php-webdriver/php-webdriver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.9 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "facebook/webdriver",
"description": "A PHP client for Selenium WebDriver",
"keywords": ["webdriver", "selenium", "php", "facebook"],
"homepage": "https://github.com/facebook/php-webdriver",
"type": "library",
"license": "Apache-2.0",
"support": {
"issues": "https://github.com/facebook/php-webdriver/issues",
"forum": "https://www.facebook.com/groups/phpwebdriver/",
"source": "https://github.com/facebook/php-webdriver"
},
"minimum-stability": "beta",
"require": {
"php": "^5.6 || ~7.0",
"symfony/process": "^2.8 || ^3.1 || ^4.0",
"ext-curl": "*",
"ext-zip": "*",
"ext-mbstring": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"sebastian/environment": "^1.3.4 || ^2.0 || ^3.0",
"friendsofphp/php-cs-fixer": "^2.0",
"squizlabs/php_codesniffer": "^2.6",
"php-mock/php-mock-phpunit": "^1.1",
"php-coveralls/php-coveralls": "^2.0",
"symfony/var-dumper": "^3.3 || ^4.0",
"jakub-onderka/php-parallel-lint": "^0.9.2"
},
"suggest": {
"ext-SimpleXML": "For Firefox profile creation"
},
"autoload": {
"psr-4": {
"Facebook\\WebDriver\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Facebook\\WebDriver\\": ["tests/unit", "tests/functional"]
},
"classmap": ["tests/functional/"]
},
"scripts": {
"codestyle:check": [
"vendor/bin/php-cs-fixer fix --diff --diff-format=udiff --dry-run -vvv --ansi",
"vendor/bin/phpcs --standard=PSR2 ./lib/ ./tests/"
],
"codestyle:fix": [
"vendor/bin/php-cs-fixer fix --diff --diff-format=udiff -vvv || exit 0",
"vendor/bin/phpcbf --standard=PSR2 ./lib/ ./tests/"
],
"analyze": [
"vendor/bin/parallel-lint -j 10 ./lib ./tests",
"vendor/bin/phpstan.phar analyze ./lib ./tests --level 2 -c phpstan.neon --ansi"
]
},
"extra": {
"branch-alias": {
"dev-community": "1.5-dev"
}
}
}