Skip to content

Commit

Permalink
Initial release.
Browse files Browse the repository at this point in the history
  • Loading branch information
kushniruk committed Jun 18, 2019
0 parents commit ae168d7
Show file tree
Hide file tree
Showing 47 changed files with 5,427 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 @@
vendor/
.idea
artifacts/
/Makefile
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# client-php-sdk
Client PHP SDK
34 changes: 34 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"name": "cloudprinter/cloudapps",
"description": "The library that help developers easily integrate with CloudPrinter CloudApps API.",
"type": "library",
"license": "cloudprinter.com",
"authors": [
{
"name": "Vasyl Kushniruk",
"email": "kushniruk92@gmail.com",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.0",
"ext-json": "*",
"ext-fileinfo": "*",
"guzzlehttp/guzzle": "~5.0",
"particle/validator": "^2.0@dev"
},
"require-dev": {
"phpunit/phpunit": "7.0.0"
},
"autoload": {
"psr-4": {
"CloudPrinter\\CloudApps\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CloudPrinter\\CloudApps\\Tests\\": "tests/"
}
}
}
Loading

0 comments on commit ae168d7

Please sign in to comment.