https://github.com/gerardbalaoro/laravel-installer
Alternative Laravel Application Installer
https://github.com/gerardbalaoro/laravel-installer
installer installer-tools laravel laravel-framework
Last synced: 3 months ago
JSON representation
Alternative Laravel Application Installer
- Host: GitHub
- URL: https://github.com/gerardbalaoro/laravel-installer
- Owner: gerardbalaoro
- License: mit
- Fork: true (laravel/installer)
- Created: 2019-11-03T09:04:14.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-31T15:37:25.000Z (about 5 years ago)
- Last Synced: 2024-04-26T23:43:09.183Z (about 1 year ago)
- Topics: installer, installer-tools, laravel, laravel-framework
- Language: PHP
- Homepage:
- Size: 114 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# Laravel Installer
An alternate version of the Laravel installer that reimplements creating projects using
previous Laravel versions (which was removed from the [original version](https://github.com/laravel/installer)).### Installation
Install using composer, this will automatically replace the [`laravel/installer`](https://github.com/laravel/installer) package
```
composer global require gerardbalaoro/laravel-installer dev-master
```### Usage
* **`laravel new [options] [--] [ []]`**
* Create a new Laravel application
```
Arguments:
name
version Install specified Laravel versionOptions:
--dev Installs the latest "development" release
--auth Installs the Laravel authentication scaffolding
-f, --force Forces install even if the directory already exists
```
* **`laravel cache [options] [--] [...]`**
* Download Laravel packages to cache
```
Arguments:
versions Versions to download [default: ["master"]]Options:
-a, --all Downloads all releases
--clean Cleans cache directory
```
* **`laravel versions`**
* Show available Laravel versions#### Example
To create a new Laravel 5.8 project, run the command:
```bash
$ laravel new blog 5.8
```### Caching
This package automatically caches the Laravel package every time the `new` command is executed.
This is very useful when creating projects while offline.### Updates
Updates to [`laravel/installer`](https://github.com/laravel/installer) will be merged to this one.