Skip to content

Commit afda7f1

Browse files
author
Josh Freeman
committed
Initial composer
1 parent a277f8a commit afda7f1

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.idea
2+
vendor

composer.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "xivapi/xivapi-php",
3+
"type": "library",
4+
"keywords": ["ffxiv","php","api","sdk"],
5+
"description": "A PHP SDK for xivapi.com",
6+
"homepage": "https://github.com/xivapi/xivapi-php",
7+
"license": "MIT",
8+
"authors": [
9+
{
10+
"name": "Josh Freeman",
11+
"email": "[email protected]",
12+
"homepage": "http://xivapi.com",
13+
"role": "Developer"
14+
}
15+
],
16+
"require": {
17+
"php": "^7.2"
18+
},
19+
"require-dev": {
20+
"phpunit/phpunit": "^6.1"
21+
},
22+
"autoload": {
23+
"psr-0": {
24+
"XIVAPI\\": "src/"
25+
}
26+
}
27+
}

src/XIVAPI/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)