-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
42 lines (42 loc) · 1.18 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
{
"name": "m1so/leaguewrap",
"description": "Riot Games API client",
"license": "MIT",
"keywords": ["leaguewrap", "lol", "league", "riot", "rito", "games", "legends", "api"],
"authors": [
{
"name": "Michal Baumgartner",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"LeagueWrap\\": "src/LeagueWrap"
}
},
"autoload-dev": {
"psr-4": {
"LeagueWrap\\Tests\\": "tests"
}
},
"require": {
"php": "^5.6 || ^7.0",
"psr/http-message": "^1.0",
"cache/cache": "^1.0",
"php-http/httplug": "^1.1",
"php-http/discovery": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/client-common": "^1.3",
"php-http/cache-plugin": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^6.1",
"brianium/paratest": "dev-master",
"vlucas/phpdotenv": "^2.4.0",
"php-http/guzzle6-adapter": "^1.0",
"php-http/mock-client": "^1.0"
},
"scripts": {
"test-int": "paratest -p8 -f --testsuite Integration --bootstrap tests/bootstrap.php --colors tests"
}
}