-
Notifications
You must be signed in to change notification settings - Fork 51
/
composer.json
38 lines (38 loc) · 958 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
{
"name": "nicklasw/pkm-go-api",
"description": "The Pokemon Go API library.",
"keywords": ["Pokemon Go API"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=5.6",
"paquettg/php-html-parser": "1.7",
"guzzlehttp/guzzle": "^6.2.1",
"jeremeamia/xstatic": "^1.0",
"php-di/php-di": "^5.3",
"phpseclib/phpseclib": "^2.0",
"nicklasw/s2-geometry-library-php": "^v2.0",
"nicklasw/pogoprotos-php": "^v2.0",
"psr/log": "^1.0",
"illuminate/support": "^5.2"
},
"require-dev": {
"phpunit/phpunit": "~4.0||~5.0"
},
"autoload": {
"psr-4": {
"NicklasW\\PkmGoApi\\": "src/"
},
"files": [
"includes/config.php"
]
},
"autoload-dev": {
"psr-4": {
"NicklasW\\PkmGoApi\\Test\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
}
}