happytodev / larafil
A Laravel Zero based CLI to install Laravel and Filament easily
Fund package maintenance!
happytodev
Ko Fi
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ^8.2.0
- laravel-zero/phar-updater: ^1.4
Requires (Dev)
- laravel-zero/framework: ^11.0.0
- laravel/pint: ^1.15.2
- mockery/mockery: ^1.6.11
- pestphp/pest: ^2.34.7
README
Larafil was created by HappyToDev and was inspired by a Povilas Korop's tweet.
In one line, you can install Laravel and FilamenPHP :
Exemple :
larafil install myNewAwesomeProject --create-user --filament-url=batcave --mysql --serve
With this single line, Larafil
- will install Laravel (last version) in a directory called
myNewAwesomeProject
- change default SQLite database by a MySQL database in your
.env
file, create the MySQL database, launch migrations, removedatabase.sqlite
database - will install FilamentPHP
- ask you to create the first Filament user
- ask you if you want to install some Filament Plugins (For now, only these plugins are supported as a proof of concept : 'None (default)', 'Breezy', 'Curator', 'Shield', 'Spatie Role Permissions')
- change the FilamentPHP admin URL to
batcave
- start the integrated server
Every option is optional.
If you don't provide the name of the application, Larafil will ask you for it, so you can perfectly use this command instead of that above :
larafil install --create-user --filament-url=batcave --mysql --serve
when Larafil will ask you for the name of the project, it wiil be up to you to give you the name.
How to use Larafil
Get it on Packagist
composer global require happytodev/larafil
and just use it :
larafil install
It will ask you the name of your future application.
Customize FilamentPHP admin url
You can change the default '/admin' url to the url you want. You have just to pass the option with your new value :
larafil install --filament-url=batcave
Once the installation finished, you can access to your dashboard with <url.of.your.project>/batcave>
Create a Filament user
You can ask for a Filament user creation at the end of the installation :
larafil install --create-user
Serve your application
You can also ask to launch Laravel integrated server after the installation :
larafil install --serve
Of course, you can combine the two options together :
larafil install --create-user --serve
Use MySQL database instead SQLite default one
If you want to use MySQL database instead the sqlite default one, you can use the --mysql
option :
larafil install --create-user --mysql --serve
Use Laravel 10 instead of Laravel 11
If you want to use Laravel 10 instead Laravel 11, you can pass the l10
option during installation :
larafil install --create-user --laravel-version=previous --serve
Nota : you can't use l10
and mysql
option together. That's because Laravel 10 use mysql by default. For Laravel 11, it's SQLite by default.
If you try to use both together, you will have an error and the install stops.
The purpose of Larafil was to play with Laravel Zero from Nuno Maduro.
How to build Larafil
- git clone
git clone https://github.com/happytodev/larafil.git larafil
- Composer install
composer install
- Build the app
php larafil app:build
- It's ready
./builds/larafil -V
Support the development
I don't know if there is another thing to develop for Larafil but tell me. It will be my pleasure to develop some good ideas for this little project.
Do you like this project? Support it by donating
Interested by Laravel 11 ?
Get my free ebook about news in Laravel 11
License
Larafil is an open-source software licensed under the MIT license.