SuperCollege Browse API wrapper for Laravel 5.*
jrean/laravel-supercollege-browse is a Laravel package for supercollege browse api wrapper for laravel 5.*.
It currently has 1 GitHub stars and 85 downloads on Packagist.
Install it with composer require jrean/laravel-supercollege-browse.
Discover more Laravel packages by jrean
or browse all Laravel packages to compare alternatives.
Last updated
jrean/laravel-supercollege-browse is a PHP package built for Laravel 5.* to easily interact with the SuperCollege Browse API.
This project can be installed via Composer. To get the latest version of Laravel User Verification, add the following line to the require block of your composer.json file:
{
"require": {
"jrean/laravel-supercollege-browse": "dev-master"
}
}
You'll then need to run composer install or composer update to download the
package and have the autoloader updated.
Or run the following command:
composer require jrean/laravel-supercollege-browse:dev-master
Once Larvel User Verification is installed, based on your Laravel version you
will need to register the service provider in config/app.php. Make sure to
add the following line above the RouteServiceProvider.
Jrean\SuperCollegeBrowse\SuperCollegeBrowseServiceProvider::class,
You may add the following aliases to your config/app.php:
'SuperCollege' => Jrean\SuperCollegeBrowse\Facades\SuperCollegeBrowse::class,
The last 2 directives are optional if you are using Laravel ~5.5, thanks to the auto-discovery option.
Publish the package config file by running the following command:
php artisan vendor:publish --provider="Jrean\SuperCollegeBrowse\SuperCollegeBrowseServiceProvider" --tag="config"
Laravel Supercollege is licensed under The MIT License (MIT).