Note: Paolo Davila
pdavila13
https://github.com/pdavila13
pdavila@iesebre.com
scool
curriculum
Package scool/curriculum
with their correct values in README.md, CHANGELOG.md, CONTRIBUTING.md, LICENSE.md and composer.json files, then delete this line. You can run $ php prefill.php
in the command line to make all replacements at once. Delete the file prefill.php as well.
This is where your description should go. Try and limit it to a paragraph or two, and maybe throw in a mention of what PSRs you support to avoid any confusion with users and contributors.
Execute the following command to get the latest version of the package:
$ composer require scool/curriculum
In your config/app.php
add CurriculumServiceProvider::class
to the end of the providers
array:
...
'providers` => [
...
Scool\Curriculum\Providers\CurriculumServiceProvider::class,
],
Publish configuration
$ php artisan vendor:publish --tag=scool_curriculum
Use:
$ php artisan migrate:status
To see curriculum migrations and run migrations with:
$ php artisan migrate
Factories for all models are installed in database/factories.
To use Curriculum Seeders modify file database/seeds/DatabaseSeeder:
public function run()
{
$this->call(CurriculumSeeder::class);
}
Please see CHANGELOG for more information what has changed recently.
$ composer test
Please see CONTRIBUTING and CONDUCT for details.
If you discover any security related issues, please email pdavila@iesebre.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.