-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 868 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": "dugan/sprintly-php",
"description": "Sprintly API wrapper for PHP 5.4+",
"keywords": ["sprintly","api"],
"support": {
"issues": "https://github.com/mikedugan/sprintly-php/issues",
"source": "https://github.com/mikedugan/sprintly-php"
},
"require": {
"php": ">=5.4.0",
"guzzlehttp/guzzle": "~5.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9.0"
},
"license": "MIT",
"authors": [
{
"name": "Mike Dugan",
"email": "mike@mjdugan.com",
"homepage": "http://mjdugan.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Dugan\\Sprintly\\": "src/",
"Dugan\\Sprintly\\Tests\\": "tests/"
}
},
"minimum-stability": "stable"
}