1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {
- "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"
- }
- }
- }
|