-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.44 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
{
"name": "surfoo/oauth2-geocaching",
"description": "Geocaching OAuth 2.0 Client Provider for The PHP League OAuth2-Client",
"license": "MIT",
"authors": [
{
"name": "Surfoo",
"email": "surfooo@gmail.com",
"homepage": "https://github.com/Surfoo"
}
],
"keywords": [
"oauth2",
"client",
"authorization",
"geocaching",
"groundspeak",
"pkce"
],
"require": {
"php": "^8.1",
"league/oauth2-client": "^2.7"
},
"require-dev": {
"mockery/mockery": "~1.4",
"php-parallel-lint/php-parallel-lint": "~1.3",
"phpstan/phpstan": "^1.9",
"phpunit/php-code-coverage": "^10.0",
"phpunit/phpunit": "^10.0",
"rector/rector": "^0.17",
"squizlabs/php_codesniffer": "~3.5"
},
"autoload": {
"psr-4": {
"League\\OAuth2\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"League\\OAuth2\\Client\\Test\\": "test/src/"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse",
"phpcs": "vendor/bin/phpcs src --standard=psr2 --exclude=Generic.Files.LineLength -sp --colors",
"phpcbf": "vendor/bin/phpcbf src --standard=psr2 --exclude=Generic.Files.LineLength -sp --colors",
"rector": "vendor/bin/rector",
"phpunit": "XDEBUG_MODE=coverage vendor/bin/phpunit"
}
}