jrean/laravel-supercollege-browse
SuperCollege Browse API wrapper for Laravel 5.*
Maintainers
Package info
github.com/jrean/laravel-supercollege-browse
pkg:composer/jrean/laravel-supercollege-browse
Requires
- php: >=5.6.4
- illuminate/support: 5.4.*|5.5.*|5.6.*
Requires (Dev)
- friendsofphp/php-cs-fixer: ^1.12
- fzaninotto/faker: ^1.6
- mockery/mockery: ^0.9.5
- phpunit/phpunit: ^5.5
- satooshi/php-coveralls: ^1.0
- sllh/php-cs-fixer-styleci-bridge: ^2.1
Suggests
None
Provides
None
Conflicts
None
Replaces
None
MIT 225496ab55a545769f260ec42cc209095722f34f
- Jean Ragouin <go.woop@askjong.com>
frameworklaravelStudentSchoolstudentssupercollegescholarshipsscholarshipschools
This package is auto-updated.
Last update: 2026-06-14 03:16:13 UTC
README
jrean/laravel-supercollege-browse is a PHP package built for Laravel 5.* to easily interact with the SuperCollege Browse API.
👁 Latest Stable Version
👁 Total Downloads
👁 License
ABOUT
- Get scholarships by multiple criterias
- Get scholarships details
INSTALLATION
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
Add the Service Provider & Facade/Alias
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"
LICENSE
Laravel Supercollege is licensed under The MIT License (MIT).
