2018-03-11 14:31:37 +00:00
|
|
|
# laravel
|
|
|
|
|
|
|
|
> A command line installer for the Laravel framework.
|
2019-06-05 08:55:51 +01:00
|
|
|
> More information: <https://laravel.com>.
|
2018-03-11 14:31:37 +00:00
|
|
|
|
|
|
|
- Create a new Laravel application:
|
|
|
|
|
|
|
|
`laravel new {{name}}`
|
|
|
|
|
|
|
|
- Use the latest development release:
|
|
|
|
|
|
|
|
`laravel new {{name}} --dev`
|
|
|
|
|
|
|
|
- Overwrite if the directory already exists:
|
|
|
|
|
|
|
|
`laravel new {{name}} --force`
|
|
|
|
|
2020-09-29 11:29:45 +01:00
|
|
|
- Install the Laravel Jetstream scaffolding:
|
2019-11-29 01:28:55 +00:00
|
|
|
|
2020-09-29 11:29:45 +01:00
|
|
|
`laravel new {{name}} --jet`
|
|
|
|
|
|
|
|
- Install the Laravel Jetstream scaffolding with a specific stack:
|
|
|
|
|
|
|
|
`laravel new {{name}} --jet --stack {{livewire|inertia}}`
|
|
|
|
|
|
|
|
- Install the Laravel Jetstream scaffolding with support for teams:
|
|
|
|
|
|
|
|
`laravel new {{name}} --jet --teams`
|
2019-11-29 01:28:55 +00:00
|
|
|
|
2018-03-11 14:31:37 +00:00
|
|
|
- List the available installer commands:
|
|
|
|
|
|
|
|
`laravel list`
|