-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
34 lines (34 loc) · 1.14 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
{
"name": "zyberspace/steam-web-api-client",
"description": "Automatically generated api client for the Steam Web API in style of the google-api-php-client.",
"keywords": ["steam", "web", "api", "client", "automatically", "generated"],
"type": "library",
"license": "MPL-2.0",
"homepage": "https://github.com/zyberspace/php-steam-web-api-client",
"support": {
"email": "zyberspace@zyberware.org",
"issues": "https://github.com/zyberspace/php-steam-web-api-client/issues",
"source": "https://github.com/zyberspace/php-steam-web-api-client",
"docs": "https://phpdoc.zyberware.org/zyberspace/steam-web-api-client/"
},
"authors": [
{
"name": "zyberspace",
"email": "zyberspace@zyberware.org"
}
],
"autoload": {
"psr-4": {
"Zyberspace\\SteamWebApi\\": "lib/Zyberspace/SteamWebApi/"
}
},
"require": {
"guzzlehttp/guzzle": "~6.0"
},
"require-dev": {
"nikic/php-parser": "~2.0"
},
"scripts": {
"generate-interfaces": "Zyberspace\\SteamWebApi\\InterfaceGenerator::generateAll"
}
}