Minimal Laravel package for local dev helper routes.
When the app environment is local, this package registers:
/dev/about/dev/logout/dev/{identifier}
This package is meant for lightweight local development helpers, including:
- a simple about page
- quick logout
- quick user login by id, email, or
nokpwhen available
Add this to your app composer.json:
{
"repositories": [
{
"type": "path",
"url": "packages/dev-about"
}
]
}Then require the package:
composer require ejoi8/dev-about:*Add this to your app composer.json:
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/your-vendor/dev-about"
}
]
}Then require it:
composer require your-vendor/dev-about:dev-main- The service provider only loads routes when the app environment is
local. - The package uses Laravel package auto-discovery.