triadev / laravel-dev-config
A service provider for laravel to managing the dev config.
v1.0.0
2017-08-12 07:03 UTC
Requires
- php: >=7.1
- illuminate/support: ^5.3
This package is auto-updated.
Last update: 2024-10-17 00:56:24 UTC
README
A service provider for laravel to managing the dev config.
Main features
- Providers by environment
- Aliases by environment
Installation
Composer
composer require triadev/laravel-dev-config
Application
Register the service provider in the config/app.php (Laravel).
'providers' => [
\Triadev\LaravelDevConfig\Provider\LaravelDevConfigServiceProvider::class
]
Once installed you can now publish your config file and set your correct configuration for using the package.
php artisan vendor:publish --provider="\Triadev\LaravelDevConfig\Provider\LaravelDevConfigServiceProvider" --tag="config"
This will create a file config/triadev-dev-config.php
.
Configuration
Reporting Issues
If you do find an issue, please feel free to report it with GitHub's bug tracker for this project.
Alternatively, fork the project and make a pull request. :)
Other
Project related links
Author
License
The code for LaravelDevConfig is distributed under the terms of the MIT license (see LICENSE).