Package Data | |
---|---|
Maintainer Username: | jrean |
Maintainer Contact: | go@askjong.com (Jean Ragouin) |
Package Create Date: | 2017-09-01 |
Package Last Update: | 2017-11-18 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:04:39 |
Package Statistics | |
---|---|
Total Downloads: | 215 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
jrean/laravel-supercollege is a PHP package built for Laravel 5.* to easily interact with the SuperCollege 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": "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:dev-master
Once Larvel User Verification is installed, you need to register the service provider in config/app.php
.
Make sure to add the following line above the RouteServiceProvider
.
Jrean\SuperCollege\SuperCollegeServiceProvider::class,
You may add the following aliases
to your config/app.php
:
'SuperCollege' => Jrean\SuperCollege\Facades\SuperCollege::class,
Publish the package config file by running the following command:
php artisan vendor:publish --provider="Jrean\SuperCollege\SuperCollegeServiceProvider" --tag="config"
Laravel Supercollege is licensed under The MIT License (MIT).