Skip to content

Commit 2c6abf0

Browse files
author
Damiano Petrungaro
committed
First Commit
1 parent 9402f57 commit 2c6abf0

File tree

105 files changed

+21579
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+21579
-0
lines changed

.gitignore

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

composer.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "damianopetrungaro/cachet-sdk",
3+
"type": "library",
4+
"description": "A PHP SDK for Cachet, providing a full functionality access.",
5+
"require": {
6+
"guzzlehttp/guzzle": "^6.2"
7+
},
8+
"require-dev": {
9+
"phpunit/phpunit": "@stable"
10+
},
11+
"license": "MIT",
12+
"homepage": "https://github.com/damianopetrungaro/CachetSDK",
13+
"authors": [
14+
{
15+
"name": "Damiano Petrungaro",
16+
"email": "damianopetrungaro@gmail.com"
17+
}
18+
],
19+
"autoload": {
20+
"psr-4": {
21+
"Damianopetrungaro\\CachetSDK\\": "src/"
22+
}
23+
},
24+
"autoload-dev": {
25+
"psr-4": {
26+
"Damianopetrungaro\\CachetSDKTest\\": "tests/Unit"
27+
}
28+
}
29+
}

0 commit comments

Comments
 (0)