forked from auth0/auth0-PHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.2 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
{
"name": "auth0/auth0-php",
"description": "Auth0 PHP SDK.",
"homepage": "https://github.com/auth0/auth0-PHP",
"license": "MIT",
"authors": [
{
"name": "Auth0",
"email": "[email protected]",
"homepage": "http://www.auth0.com/"
}
],
"require": {
"php": "^5.5 || ^7.0",
"guzzlehttp/guzzle": "~6.0",
"ext-json": "*",
"firebase/php-jwt" : "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.7",
"josegonzalez/dotenv": "^2.0",
"squizlabs/php_codesniffer": "^3.2",
"phpcompatibility/php-compatibility": "^8.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0"
},
"autoload": {
"psr-4": {
"Auth0\\SDK\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Auth0\\Tests\\": "tests/"
}
},
"scripts": {
"test": "SHELL_INTERACTIVE=1 \"vendor/bin/phpunit\" --colors=always --coverage-text --verbose ",
"test-ci": "\"vendor/bin/phpunit\" --colors=always --coverage-clover=build/coverage.xml",
"phpcs": "\"vendor/bin/phpcs\"",
"phpcbf": "\"vendor/bin/phpcbf\"",
"sniffs": "\"vendor/bin/phpcs\" -e",
"config-phpcs": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
}
}