-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit e239810
Showing
8 changed files
with
8,327 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/vendor | ||
.phpunit.result.cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
require __DIR__ . '/vendor/autoload.php'; | ||
|
||
$finder = PhpCsFixer\Finder::create() | ||
->notPath([ | ||
'vendor', | ||
]) | ||
->in([ | ||
__DIR__ . '/src', | ||
// __DIR__ . '/tests', | ||
]) | ||
->name('*.php') | ||
->notName('*.blade.php'); | ||
|
||
return \Justijndepover\PHPCheck\Rules::all($finder); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2020 Justijn Depover | ||
|
||
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Teamleader API | ||
|
||
[](https://packagist.org/packages/justijndepover/teamleader-api) | ||
[](LICENSE.md) | ||
[](https://packagist.org/packages/justijndepover/teamleader-api) | ||
|
||
PHP Client for the Teamleader API | ||
|
||
## Caution | ||
|
||
This application is still in development and could implement breaking changes. Please use at your own risk. | ||
|
||
## Installation | ||
|
||
You can install the package with composer | ||
|
||
```sh | ||
composer require justijndepover/teamleader-api | ||
``` | ||
|
||
## Usage | ||
|
||
Todo | ||
|
||
## Security | ||
|
||
If you find any security related issues, please open an issue or contact me directly at [[email protected]]([email protected]). | ||
|
||
## Contribution | ||
|
||
If you wish to make any changes or improvements to the package, feel free to make a pull request. | ||
|
||
## License | ||
|
||
The MIT License (MIT). Please see [License File](LICENSE.md) for more information. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"name": "justijndepover/teamleader-api", | ||
"description": "PHP Client for the Teamleader API", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Justijn Depover", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"keywords": [ | ||
"php", | ||
"teamleader", | ||
"api" | ||
], | ||
"require": { | ||
"guzzlehttp/guzzle": "^7.3" | ||
}, | ||
"require-dev": { | ||
"orchestra/testbench": "^6.4", | ||
"justijndepover/php-check": "^0.5.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Justijndepover\\Teamleader\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Justijndepover\\Teamleader\\Tests\\": "tests/" | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true | ||
} |
Oops, something went wrong.