sven / moretisan
Add more artisan commands to your Laravel projects.
Requires
- illuminate/support: ^5.0
- laravel/framework: ^5.0
- league/flysystem: ^1.0
Requires (Dev)
- graham-campbell/testbench: ^3.1
- phpunit/phpunit: ^4.8 || ^5.0
This package is not auto-updated.
Last update: 2022-02-01 12:56:47 UTC
README
Moretisan
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.