physio/mylittlecms

This package is abandoned and no longer maintained. No replacement package was suggested.

a little CMS designed with laravel backpack

v1.1 2017-07-29 09:44 UTC

This package is not auto-updated.

Last update: 2021-03-09 01:36:52 UTC


README

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

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.

Structure

If any of the following are applicable to your project, then the directory structure should follow industry best practises by being named the following.

bin/        
config/
src/
tests/
vendor/

Install

Via Composer

$ composer require physio/mylittlecms

$ php artisan vendor:publish --provider="Backpack\Base\BaseServiceProvider" 
#publishes configs, langs, views and AdminLTE files
$ php artisan vendor:publish --provider="Prologue\Alerts\AlertsServiceProvider"# publish config for notifications - prologue/alerts

php artisan elfinder:publish #published elfinder assets
php artisan vendor:publish --provider="Backpack\CRUD\CrudServiceProvider" --tag="public" #publish CRUD assets
php artisan vendor:publish --provider="Backpack\CRUD\CrudServiceProvider" --tag="lang" #publish CRUD lang files 
php artisan vendor:publish --provider="Backpack\CRUD\CrudServiceProvider" --tag="config" #publish CRUD and custom elfinder config files
php artisan vendor:publish --provider="Backpack\CRUD\CrudServiceProvider" --tag="elfinder" #publish custom elFinder views


$ php artisan migrate #generates users table (using Laravel's default migrations)

before class name use Backpack\Base\app\Notifications\RsetPasswordNotification as ResetPasswordNotification;

as a method inside the User class:

  /**
   * Send the password reset notification.
   *
   * @param  string  $token
   * @return void
   */
  public function sendPasswordResetNotification($token)
  {
      $this->notify(new ResetPasswordNotification($token));
  }

Usage

$skeleton = new physio\mylittlecms();
echo $skeleton->echoPhrase('Hello, League!');

Change log

Please see CHANGELOG for more information on 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 ilphysio@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.