opinodo / cint-library
Library for easy calling Cint api.
This package's canonical repository appears to be gone and the package has been frozen as a result.
This package has no released version yet, and little information is available.
README
Library for using Cint api.
####Installation:
Require this package with composer using the following command:
composer require opinodo/cint-library
In Laravel, instead of adding the service provider in the config/app.php
file, you can add the following code to your app/Providers/AppServiceProvider.php
file, within the register()
method:
public function register() { $this->app->register(\Opinodo\CintLibrary\CintServiceProvider::class); // ... }
You can also publish the config file to change configuration.
php artisan vendor:publish --provider="Opinodo\CintLibrary\CintServiceProvider" --tag=config