forked from manuelpichler/pivotal-tracker-api
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
30 lines (28 loc) · 853 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
{
"name": "drzippie/pivotal-tracker-api",
"description": "Library that provides a PHP interface to interact with the PivotalTracker API V5",
"homepage": "https://github.com/drzippie/pivotal-tracker-api",
"keywords": ["pivotaltracker", "api", "v5"],
"license": "LGPL",
"type": "library",
"authors": [
{
"name": "Antonio Cortés (DrZippie)",
"email": "[email protected]",
"homepage": "http://www.antoniocortes.com/"
},
{
"name": "Manuel Pichler",
"email": "[email protected]",
"homepage": "http://manuel-pichler.de/"
}
],
"require": {
"php": ">=5.3.0"
},
"autoload": {
"psr-0": {
"PivotalTrackerV5": "src/main/php/"
}
}
}