-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
38 lines (38 loc) · 884 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
37
38
{
"name": "iamstuartwilson/strava",
"description": "PHP implementation of the Strava V3 API",
"license": "MIT",
"authors": [
{
"name": "Stuart Wilson",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.5"
},
"require-dev": {
"phpunit/phpunit": "~4.8"
},
"autoload": {
"psr-0" : {
"Iamstuartwilson\\" : "src/"
}
},
"scripts": {
"ci:lint": "find config src tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:tests": "./vendor/bin/phpunit tests/",
"ci:static": [
"@ci:lint"
],
"ci:dynamic": [
"@ci:tests"
],
"ci": [
"@ci:static",
"@ci:dynamic"
]
}
}