tldr/pages/common/laravel.md

25 lines
456 B
Markdown
Raw Normal View History

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`
2019-11-29 01:28:55 +00:00
- Install the Laravel authentication scaffolding:
`laravel new {{name}} --auth`
2018-03-11 14:31:37 +00:00
- List the available installer commands:
`laravel list`