Skeleton to create Laravel/Lumen packages
tychovbh/laravel-package-skeleton is a Laravel package for skeleton to create laravel/lumen packages.
It currently has 0 GitHub stars and 520 downloads on Packagist (latest version v1.5).
Install it with composer require tychovbh/laravel-package-skeleton.
Discover more Laravel packages by tychovbh
or browse all Laravel packages to compare alternatives.
Last updated
Laravel Package Skeleton is created by, and is maintained by Tycho, and is a Laravel/Lumen package to create new packages. Feel free to check out the change log, releases, license, and contribution guidelines
Install through composer
composer require --dev tychovbh/laravel-package-skeleton
Run the setup this will create a folder bootstrap/cache. Do not remove this folder at any time
php vendor/tychovbh/laravel-package-skeleton/setup
All Laravel Artisan commands are now available, use the following one to install a package:
php artisan make:skeleton
You will be ask a few questions that will be needed to generate your composer.json file and Service Provider.
You are now setup to develop your package with. The package comes with orchestra/testbench for writing test cases. But you can decide to use whatever you desire.
Use artisan to generate your controllers, models, migrations etc.
If included during skelleton creation:
{project_root}/routes{project_root}/views{project_root}/configPlease see CHANGELOG for more information on what has changed recently.
$ composer test
Please see CONTRIBUTING and CODE_OF_CONDUCT for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.