-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
47 lines (47 loc) · 1.13 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
{
"name": "artur-stepien/wot-wn8",
"description": "Calculates World of Tanks WN8 using https://github.com/artur-stepien/wargaming-papi api interface",
"keywords": [
"wargaming",
"wg",
"wot",
"wn8",
"world of tanks"
],
"homepage": "https://github.com/artur-stepien/wot-wn8",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Artur Stępień",
"email": "[email protected]",
"homepage": "https://www.bestproject.pl"
}
],
"require-dev": {
"phpunit/phpunit": "^8.5"
},
"require": {
"php": ">=7.0.0",
"ext-json": "*",
"ext-curl": "*",
"artur-stepien/wargaming-papi": "1.4.*"
},
"conflict": {
"artur-stepien/wargaming-papi": "<1.4"
},
"autoload": {
"classmap": [
"src/WN8.php"
]
},
"autoload-dev": {
"psr-4": {
"Wargaming\\WoT\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --bootstrap vendor/autoload.php tests/"
},
"scripts-descriptions": {}
}