-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
60 lines (60 loc) · 1.89 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
51
52
53
54
55
56
57
58
59
60
{
"name": "surfoo/geocaching-php-sdk",
"description": "Geocaching PHP SDK",
"type": "library",
"license": "MIT",
"keywords": ["groundspeak", "geocaching", "geocache", "api", "oauth", "sdk", "php"],
"homepage": "https://geocaching.vaguelibre.net/api/",
"authors": [
{
"name": "Surfoo",
"email": "surfooo@gmail.com"
}
],
"autoload": {
"psr-4": {
"Geocaching\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Geocaching\\Client\\Tests\\": "tests"
}
},
"require": {
"php": "^8.1",
"monolog/monolog": "^3.0",
"nyholm/psr7": "^1.8",
"php-http/client-common": "^2.7",
"php-http/discovery": "^1.19",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "*",
"psr/http-factory": "^1.0",
"surfoo/oauth2-geocaching": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"php-http/mock-client": "^1.6",
"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",
"symfony/var-dumper": "^6.3"
},
"scripts": {
"php-cs-fixer": "php-cs-fixer fix",
"phpcbf": "vendor/bin/phpcbf src --standard=psr2 --exclude=Generic.Files.LineLength -sp --colors",
"phpcs": "vendor/bin/phpcs src --standard=psr2 --exclude=Generic.Files.LineLength -sp --colors",
"phpstan": "vendor/bin/phpstan analyse",
"phpunit": "XDEBUG_MODE=coverage vendor/bin/phpunit",
"rector": "vendor/bin/rector"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
},
"sort-packages": true
}
}