This repo can be used to scaffold a TallUI package. Follow these steps to get started:
- Press the "Use this template" button at the top of this repo to create a new repo with the contents of this skeleton.
- Run "php ./configure.php" to run a script that will replace all placeholders throughout all the files.
- Have fun developing your package.
This package is based on Laravel Package Tools by Spatie, learn more about the simplified scaffolding of your service-provider there.
If you need help creating a package, consider picking up the Laravel Package Training by Spatie video course.
For most of the questions in configure.php, there will be an example migration, command, module, widget, block and component configured. You can directly start to build your package editing these examples. If you need more than one migration, command, module, widget, block or component, you can add these as an array. Don't forget to switch between
hasMigration
andhasMigrations
, or callhasMigration
multiple timeshasCommand
andhasCommands
, or callhasCommand
multiple timeshasModule
andhasModules
, or callhasModule
multiple timeshasWidget
andhasWidgets
, or callhasWidget
multiple timeshasBlock
andhasBlocks
, or callhasBlock
multiple times
We stick to the conventions made in Spatie's Laravel Package Tools. If you are unsure about the syntax, read there.
Think about how to add each of these questions, or make them default.
- Does the package include config? Y/n
- Does the package include views? Y/n
- Does the package include translations? Y/n
- Does the package include migrations? Y/n
- Does the package include commands? Y/n
- Does the package include admin modules? Y/n
- Does the package include admin widgets? Y/n
- Does the package include editor blocks? Y/n
- Does the package include an admin theme? Y/n
- Does the package include a website theme? Y/n
- Does the package include docs? Y/n
- Does the package include blade components? Y/n
- Does the package include livewire components? Y/n
- Add the package-provider in core or packages, extend spatie and use the own package provider
- Add a demo blade and livewire-component
- Add languages? Which ones?
- Scaffold! :-)
- Idea: use config from blade-ui-kit instead of service provider
- Design: add theming
Probably a good idea to:
- How to create ... modules, ...
This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
You can install the package via composer:
composer require :vendor_slug/:package_slug
You can publish and run the migrations with:
php artisan vendor:publish --tag=":package_slug-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag=":package_slug-config"
This is the contents of the published config file:
return [
];
Optionally, you can publish the views using
php artisan vendor:publish --tag=":package_slug-views"
$variable = new VendorName\Skeleton();
echo $variable->echoPhrase('Hello, VendorName!');
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
This package is based on Package Skeleton Laravel from Spatie. If you are a Laravel developer, their services, products and trainings are for you. Otherwise they love post cards.
The MIT License (MIT). Please see License File for more information.