Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
glorand committed Dec 4, 2018
2 parents 2d99a84 + a736e03 commit ebc2c8e
Show file tree
Hide file tree
Showing 21 changed files with 4,875 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
composer.phar
vendor/
/.idea
.php_cs.cache

# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
Expand Down
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: php

php:
- 7.0
- 7.1
- 7.2
- 7.3

before_script:
- composer selfupdate
- composer install

script: phpunit
19 changes: 19 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Copyright (c) Tom Planer

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Drip PHP
A PHP wrapper for Drip's REST API v2.0 for PHP 7.1+

Author: Gombos Lorand
## Installation
```
$ composer require glorand/drip
```

```
{
"require": {
"glorand/drip": "1.*"
}
}
```

## Current Features
## License
When is licensed under the MIT License, see `LICENSE` for specific details.
43 changes: 43 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"name": "glorand/drip-php",
"description": "A PHP wrapper for Drip's REST API v2.0",
"type": "package",
"keywords": [
"glorand",
"drip-php"
],
"require": {
"php": "^7.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "^7.1",
"phpmd/phpmd": "dev-master",
"squizlabs/php_codesniffer": "^3.0@dev",
"friendsofphp/php-cs-fixer": "^2.14@dev",
"phpstan/phpstan": "^0.11.0@dev"
},
"autoload": {
"psr-4": {
"Glorand\\Drip\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Glorand\\Drip\\Tests\\": "tests"
}
},
"license": "MIT",
"authors": [
{
"name": "Lorand Gombos",
"email": "gombos.lorand@gmail.com"
}
],
"minimum-stability": "dev",
"scripts": {
"php-cs-fixer": "php-cs-fixer fix --rules=@PSR2 src",
"php-stan": "vendor/bin/phpstan analyse src"
}
}
Loading

0 comments on commit ebc2c8e

Please sign in to comment.