xetaio / xetaravel-local
A simple package that regroup all tools to work in local environment.
Installs: 737
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/xetaio/xetaravel-local
Requires
- php: >=5.6.4
- barryvdh/laravel-debugbar: ^2.3
- filp/whoops: ^2.1
- laravel/framework: 5.4.*
Requires (Dev)
This package is auto-updated.
Last update: 2025-10-05 03:03:46 UTC
README
Xetaravel Local
Stable Version Downloads Laravel License A simple package that regroup all tools to work in local environment.
Packages Included Installation
composer require xetaio/xetaravel-local
Import the
LocalEnvironmentServiceProvider
in yourconfig/app.php
:Xetaio\Local\Providers\LocalEnvironmentServiceProvider::class
To use
Whoops
(optional), extend yourapp\Exceptions\Handler
toXetaio\Local\Exceptions\LocalHandler
:<?php namespace App\Exceptions; use Exception; use Illuminate\Auth\AuthenticationException; use Xetaio\Local\Exceptions\LocalHandler as ExceptionHandler; class Handler extends ExceptionHandler { // }If you want to change the
DebugBar
config, you will need to publish the config :php artisan vendor:publish --provider="Barryvdh\Debugbar\ServiceProvider"
Contribute
If you want to contribute to the project by adding new features or just fix a bug, feel free to do a PR.