https://github.com/morning-train/envato-api
A complete native php wrapper for the Envato API
https://github.com/morning-train/envato-api
Last synced: about 1 year ago
JSON representation
A complete native php wrapper for the Envato API
- Host: GitHub
- URL: https://github.com/morning-train/envato-api
- Owner: Morning-Train
- License: gpl-3.0
- Created: 2015-11-19T10:18:21.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-11-29T09:53:41.000Z (over 4 years ago)
- Last Synced: 2025-04-18T04:13:43.874Z (about 1 year ago)
- Language: PHP
- Size: 27.3 KB
- Stars: 14
- Watchers: 4
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PHP Envato Api
[](LICENSE.md)

A complete native php wrapper for the [Envato API](https://build.envato.com/)
## Install
Via Composer
``` bash
$ composer require morningtrain/envato-api
```
## Usage
``` php
require 'vendor/autoload.php';
use MorningTrain\EnvatoApi\EnvatoApi;
define('ENVATO_TOKEN', 'YOUR-ENVATO-API-TOKEN');
$envatoClient = new EnvatoApi(ENVATO_TOKEN);
$sales = $envatoClient->getAuthorSales(0);
```
## Security
If you discover any security related issues, please email mail@morningtrain.dk instead of using the issue tracker.
## Credits
- [morningtrain.dk](http://morningtrain.dk/)
- [Mohamed Bouallegue](https://github.com/MohamedBoualleg)
## License
GNU General Public License v3.0. Please see [License File](LICENSE.md) for more information.