-
Notifications
You must be signed in to change notification settings - Fork 256
/
composer.json
57 lines (57 loc) · 1.43 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
48
49
50
51
52
53
54
55
56
57
{
"name": "kronusme/dota2-api",
"description": "DotA 2 Web API PHP wrapper",
"license": "MIT",
"version": "2.2.1",
"type": "library",
"keywords": [
"dota2",
"api",
"wrapper",
"SDK"
],
"authors": [
{
"name": "KronuS Me",
"email": "[email protected]",
"homepage": "http://kronus.me",
"role": "Developer"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "sebastianbergmann/phpcov",
"version": "1.1.0",
"dist": {
"url": "https://github.com/sebastianbergmann/phpcov/archive/1.1.0.zip",
"type": "zip"
},
"source": {
"url": "https://github.com/sebastianbergmann/phpcov.git",
"type": "git",
"reference": "1.1.0"
},
"bin": [
"phpcov.php"
]
}
}
],
"autoload": {
"psr-4": {
"Dota2Api\\": "includes/"
}
},
"require": {
"php": ">5.2"
},
"require-dev": {
"phpunit/phpunit": "4.4.*",
"phpunit/dbunit": ">=1.2",
"satooshi/php-coveralls": "~1.0",
"squizlabs/php_codesniffer": "2.*",
"sebastianbergmann/phpcov": "1.1.0"
}
}