-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
62 lines (62 loc) · 1.55 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
61
62
{
"name": "tcgdex/sdk",
"description": "PHP SDK to communicate with the TCGdex API",
"type": "library",
"keywords": [
"tcgdex",
"pokemon",
"trading",
"card",
"tcg",
"sdk"
],
"license": "MIT",
"autoload": {
"psr-4": {
"TCGdex\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "./tests/"
}
},
"authors": [
{
"name": "Avior",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"psr/http-client": "^1.0",
"psr/simple-cache": "^1 || ^2 || ^3"
},
"suggest": {
"symfony/cache": "Good PSR16 implementation",
"nyholm/psr7": "Good PSR17 implementation",
"kriswallsmith/buzz": "Good PSR 18 implementation"
},
"require-dev": {
"kriswallsmith/buzz": "^1",
"symfony/cache": "^6",
"nyholm/psr7": "^1",
"squizlabs/php_codesniffer": "^3",
"phpmd/phpmd": "^2",
"phpstan/phpstan": "^1",
"phpunit/phpunit": "^10",
"webclient/fake-http-client": "^3"
},
"funding": [{
"type": "github",
"url": "https://github.com/sponsors/tcgdex"
}],
"scripts": {
"phpcs": "phpcs --no-cache --report-full",
"phpmd": "phpmd src text phpmd",
"github:phpmd": "phpmd src github phpmd",
"phpstan": "phpstan analyse src --level=6",
"test": "XDEBUG_MODE=coverage phpunit"
}
}