Skip to content

Commit

Permalink
Init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurPatriot committed Nov 14, 2022
0 parents commit fb6c907
Show file tree
Hide file tree
Showing 3 changed files with 656 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/.idea
/vendor

composer.phar
29 changes: 29 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "arthurpatriot/thepower-sdk",
"description": "Production ready SDK for ThePower.io API",
"keywords": ["thepower", "tp", "tpnode", "tpapi"],
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Artur Khylskyi",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.5"
},
"autoload": {
"psr-4": {
"ThePower\\": "src/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}
Loading

0 comments on commit fb6c907

Please sign in to comment.