-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
42 lines (42 loc) · 964 Bytes
/
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
{
"name": "pokemon-tcg/pokemon-tcg-sdk-php",
"description": "This is the Pokémon TCG SDK PHP implementation. It is a wrapper around the Pokémon TCG API of pokemontcg.io.",
"keywords": [
"pokemon",
"tcg",
"sdk"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "CJ O'Hara",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^7.4 || ^8.0",
"doctrine/inflector": "^2.0",
"guzzlehttp/guzzle": "^7.2",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"dms/phpunit-arraysubset-asserts": "^0.2.1"
},
"autoload": {
"psr-4": {
"Pokemon\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/lib/"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}