scool/foundation
foundation
Common classes for all scool modules.
Install
Via Composer in your Laravel project executes:
$ composer require scool/foundation
Add to file config/app.php the FoundationServiceProvider:
...
/*
* Package Service Providers...
*/
Scool\Foundation\Providers\FoundationServiceProvider::class,
...
And publish files with:
php artisan vendor:publish --tag=scool_foundation
Usage
Modify your App\User class to:
<?php
namespace App;
use Scool\Foundation\User as ScoolUser;
class User extends ScoolUser
{
}
Change log
Please see CHANGELOG for more information what has changed recently.
Testing
$ composer test
Contributing
Please see CONTRIBUTING and CONDUCT for details.
Security
If you discover any security related issues, please email sergiturbadenas@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.