-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
33 lines (33 loc) · 865 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
{
"name": "progi1984/phprunkeeper",
"description": "A PHP library for the RunKeeper API",
"keywords": ["PHP","runkeeper", "api"],
"version": "0.1.0-beta",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Franck LEFEVRE",
"email": "[email protected]",
"homepage": "http://rootslabs.net/blog/",
"role": "Lead Developer"
}
],
"require": {
"php": ">=5.5.0",
"league/oauth2-client": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"phpdocumentor/phpdocumentor":"2.*",
"phpmd/phpmd": "2.*",
"sebastian/phpcpd": "2.*",
"phploc/phploc": "2.*",
"squizlabs/php_codesniffer": "2.*"
},
"autoload": {
"psr-0": {
"Progi1984": "src/"
}
}
}