Skip to content

Commit 54465a0

Browse files
committed
initial commit
0 parents  commit 54465a0

File tree

6 files changed

+2083
-0
lines changed

6 files changed

+2083
-0
lines changed

.gitignore

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

composer.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "staileu/php",
3+
"description": "The php sdk to use staileu services",
4+
"type": "library",
5+
"homepage": "https://stail.eu",
6+
"require": {
7+
"guzzlehttp/guzzle": "^6.3",
8+
"ext-json": "*"
9+
},
10+
"require-dev": {
11+
"phpunit/phpunit": "^7.5"
12+
},
13+
"license": "MIT",
14+
"authors": [
15+
{
16+
"name": "STAN-TAb Corp.",
17+
"email": "contact@stantabcorp.com"
18+
}
19+
],
20+
"autoload": {
21+
"psr-4": {
22+
"STAILEUAccounts\\": "src/"
23+
}
24+
}
25+
}

0 commit comments

Comments
 (0)