{ "name": "auth0/auth0-php", "description": "Auth0 PHP SDK.", "homepage": "https://github.com/auth0/auth0-PHP", "license": "MIT", "authors": [ { "name": "Auth0", "email": "support@auth0.com", "homepage": "http://www.auth0.com/" } ], "require": { "php": "^7.1", "guzzlehttp/guzzle": "~6.0 | ~7.0", "ext-json": "*", "lcobucci/jwt": "^3.3", "psr/simple-cache": "^1.0" }, "require-dev": { "phpunit/phpunit": "^7.0", "josegonzalez/dotenv": "^2.0", "squizlabs/php_codesniffer": "^3.2", "phpcompatibility/php-compatibility": "^8.1", "dealerdirect/phpcodesniffer-composer-installer": "^0.7", "cache/array-adapter": "^1.0" }, "autoload": { "psr-4": { "Auth0\\SDK\\": "src/" } }, "autoload-dev": { "psr-4": { "Auth0\\Tests\\": "tests/" } }, "scripts": { "test": "SHELL_INTERACTIVE=1 \"vendor/bin/phpunit\" --coverage-text", "test-ci": "\"vendor/bin/phpunit\" --stop-on-failure --coverage-clover=build/coverage.xml", "test-unit": "SHELL_INTERACTIVE=1 \"vendor/bin/phpunit\" --coverage-text --testsuite=unit", "test-unit-ci": "SHELL_INTERACTIVE=1 \"vendor/bin/phpunit\" --stop-on-failure --coverage-clover=build/coverage.xml --testsuite=unit", "test-integration": "SHELL_INTERACTIVE=1 \"vendor/bin/phpunit\" --coverage-text --testsuite=integration", "test-integration-ci": "\"vendor/bin/phpunit\" --stop-on-failure --coverage-clover=build/coverage.xml --testsuite=integration", "phpcs": "\"vendor/bin/phpcs\"", "phpcbf": "\"vendor/bin/phpcbf\"", "compat": "\"vendor/bin/phpcs\" --standard=.phpcs-compat.xml.dist", "sniffs": "\"vendor/bin/phpcs\" -e", "config-phpcs": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run", "pre-commit": [ "@test", "@compat", "@phpcbf" ] } }