scool/foundation

Foundation classes for Scool

0.2.1 2016-11-25 13:11 UTC

This package is not auto-updated.

Last update: 2024-04-12 21:28:15 UTC


README

Latest Version on Packagist Software License Build Status Coverage Status Quality Score Total Downloads

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.