-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.38 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
{
"name": "upbond/auth-php",
"description": "Auth PHP SDK.",
"homepage": "https://github.com/upbond/auth-php",
"license": "MIT",
"authors": [
{
"name": "Upbond",
"email": "[email protected]",
"homepage": "https://upbond.io/"
}
],
"require": {
"php": "^7.3 | ^8.0",
"guzzlehttp/guzzle": "^5.3.3|^6.2.1|^7.0",
"ext-json": "*",
"lcobucci/jwt": "*",
"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.5.0",
"cache/array-adapter": "^1.0"
},
"autoload": {
"psr-4": {
"Upbond\\Auth\\SDK\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Upbond\\Auth\\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",
"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" ]
}
}