scool / foundation
Foundation classes for Scool
Installs: 2 024
Dependents: 4
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 1
Requires
- php: ~5.6|~7.0
- acacha/names: dev-master
- laravel/framework: ^5.3
Requires (Dev)
- phpunit/phpunit: ~4.0||~5.0
- squizlabs/php_codesniffer: ^2.3
This package is not auto-updated.
Last update: 2024-11-09 00:02:47 UTC
README
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.