Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/enomotodev/laravel-dev-mark
Show dev mark on development env
https://github.com/enomotodev/laravel-dev-mark
Last synced: about 2 months ago
JSON representation
Show dev mark on development env
- Host: GitHub
- URL: https://github.com/enomotodev/laravel-dev-mark
- Owner: enomotodev
- Created: 2020-05-13T07:45:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-13T07:47:18.000Z (over 4 years ago)
- Last Synced: 2024-10-16T01:27:23.637Z (3 months ago)
- Language: PHP
- Homepage:
- Size: 21.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel Dev Mark
Differentiate development environment from production.
## Screenshot
![screenshot](misc/screenshot.png)
## Installation
Require this package with composer. It is recommended to only require the package for development.
```
composer require --dev enomotodev/laravel-dev-mark
```Laravel uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.
### Without auto-discovery
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php
```php
LaravelDevMark\ServiceProvider::class,
```### Customize layout
Copy the package config to your local config with the publish command:
```
php artisan vendor:publish --provider="LaravelDevMarkServiceProvider"
```## License
Laravel Dev Mark is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)