alexsoft / webserver-config-generator
Package for generating webserver configuration file for your Laravel app
Package info
github.com/alexsoft/L4-Webserver-Config-Generator
pkg:composer/alexsoft/webserver-config-generator
v2.0.1
2014-09-23 09:06 UTC
Requires
- php: >=5.4.0
- illuminate/console: ~5.0
- illuminate/filesystem: ~5.0
- illuminate/support: ~5.0
- illuminate/view: ~5.0
README
Instalation
First install it using Composer. Edit your project's composer.json file to require alexsoft/webserver-config-generator.
"require": {
"alexsoft/webserver-config-generator": "~1.3.1"
}
Next, update Composer from the Terminal:
composer update
Once this operation completes, the final step is to add the service provider. Open app/config/app.php, and add a new item to the providers array.
'Alexsoft\WebserverGenerator\WebserverGeneratorServiceProvider'
That's it! You're all set to go. Run the artisan command from the Terminal to see the new webserver commands.