forked from PaladinsDev/PHP-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1012 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
{
"name": "paladinsdev/php-api",
"description": "A Paladins PHP API adapter for easy communication with the Hi-Rez/Evil Mojo developer API.",
"keywords": ["paladins", "api", "adapter", "hirez", "champions of the realm", "evil", "mojo", "evil mojo"],
"license": "Apache-2.0",
"minimum-stability": "stable",
"authors": [
{
"name": "Matthew Hatcher",
"email": "[email protected]",
"homepage": "https://halfpetal.com",
"role": "Developer"
}
],
"homepage": "https://github.com/PaladinsDev/PHP-API",
"type": "library",
"require": {
"php": ">=7.1",
"guzzlehttp/guzzle": "^7.3",
"onoi/cache": "^1.2",
"nesbot/carbon": "^2.46"
},
"require-dev": {
"phpunit/phpunit": "^7"
},
"autoload": {
"psr-4": {
"PaladinsDev\\PHP\\": "src/"
}
},
"scripts": {
"test": [
"@php vendor/bin/phpunit"
]
}
}