gewora/envato

A Laravel 4 package for the Envato marketplaces - like themeforest.net.

Maintainers

Package info

github.com/Gewora/Laravel-4-Envato-API-Wrapper

Homepage

pkg:composer/gewora/envato

Statistics

Installs: 36

Dependents: 0

Suggesters: 0

Stars: 11

Open Issues: 2

dev-master 2014-10-09 23:00 UTC

This package is not auto-updated.

Last update: 2026-02-23 21:36:16 UTC


README

A Laravel 4 package for the Envato marketplaces - like themeforest.net.

Information

Visit www.gewora.net for more awesome products!

Installation

To get the latest version of Gewora/Envato simply require it in your composer.json file.

"gewora/envato": "dev-master"

After that, you'll need to run composer update to download the latest Version and updating the autoloader.

Once Gewora/Envato is installed, you need to register the ServiceProvider. To do that open app/config/app.php and add the following to the providers key.

'Gewora\Envato\EnvatoServiceProvider',

How to use

First you need to publish the config file. To do that, type the following in the terminal:

php artisan config:publish Gewora/Envato

Now open: app/config/packages/Gewora/config.php and fill it with your data

return array(

    'username' => 'Your Envato Username',
    'api_key' => 'Your Envato API Key',

);

Now you can use the package like that:

$result = Envato::account_information();
dd($result);