sven/moretisan

This package is abandoned and no longer maintained. The author suggests using the sven/artisan-view package instead.

Add more artisan commands to your Laravel projects.

2.0.5 2016-04-03 17:25 UTC

This package is not auto-updated.

Last update: 2022-02-01 12:56:47 UTC


README

moretisan

Moretisan

Latest Version on Packagist Total Downloads Software License Build Status Code Climate Code Quality SensioLabs Insight

This package is deprecated! Use sven/artisan-view instead!

This package adds helpful artisan commands to your Laravel projects. More are constantly being added!

Installation

Via composer:

$ composer require sven/moretisan

Alternatively, add the package to your dev dependencies in composer.json and run composer update afterwards:

{
    "require": {
        "sven/moretisan": "^2.0"
    }
}

Next, add the MoretisanServiceProvider to your providers array in config/app.php:

// config/app.php
'providers' => [
    ...
    Sven\Moretisan\MoretisanServiceProvider::class,
    ...
];

Usage

The commands in this package should now be registered. Simply run php artisan, and you will see all commands in the list.

Currently, the package provides the following command(s):

  • php artisan make:view
  • php artisan scrap:view

More in-depth documentation can be found on the wiki.

Contributing

All contributions (in the form on pull requests, issues and feature-requests) are welcomed and will be properly credited.

License

sven/moretisan is licenced under the MIT License (MIT). Please see the license file for more information.