ejoi8/dev-about

Minimal local dev about page for Laravel applications.

Maintainers

Package info

github.com/ejoi8/dev-about

pkg:composer/ejoi8/dev-about

Statistics

Installs: 10

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-main 2026-05-03 13:20 UTC

This package is auto-updated.

Last update: 2026-05-03 13:21:02 UTC


README

Minimal Laravel package for local dev helper routes.

What It Adds

When the app environment is local, this package registers:

  • /dev/about
  • /dev/logout
  • /dev/{identifier}

Purpose

This package is meant for lightweight local development helpers, including:

  • a simple about page
  • quick logout
  • quick user login by id, email, or nokp when available

Installation

Local Path Repository

Add this to your app composer.json:

{
    "repositories": [
        {
            "type": "path",
            "url": "packages/dev-about"
        }
    ]
}

Then require the package:

composer require ejoi8/dev-about:*

GitHub VCS Repository

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

Notes

  • The service provider only loads routes when the app environment is local.
  • The package uses Laravel package auto-discovery.