Looking to hire Laravel developers? Try LaraJobs

laravel-economic maintained by lasserafn

Description
Economic REST wrapper for Laravel
Author
Last update
2023/02/22 16:43 (dev-master)
License
Links
Downloads
18 642

Comments
comments powered by Disqus

Laravel e-conomic REST wrapper

Installation

  1. Require using composer
composer require lasserafn/laravel-economic

In Laravel 5.5, and above, the package will auto-register the service provider. In Laravel 5.4 you must install this service provider.

  1. Add the EconomicServiceProvider to your config/app.php providers array.
<?php 
'providers' => [
    // ...
    \LasseRafn\Economic\EconomicServiceProvider::class,
    // ...
]
  1. Copy the package config to your local config with the publish command:
php artisan vendor:publish --provider="LasseRafn\Economic\EconomicServiceProvider"

Usage outside of Laravel

You can use this package without Laravel, but configuration files wont be used, so you must provide the keys to the class.

The wrapper uses the config() method in the Economic class if no keys are provided. But if you remember to provide keys, it should never be called.

Otherwise register a global method for config until there's a framework agnostic version (coming eventually)

Contributors