spork/development

A plugin meant for developing things!

Maintainers

Package info

github.com/spork-app/development

Language:Vue

pkg:composer/spork/development

Fund package maintenance!

Ko Fi

austinkregel

Statistics

Installs: 4

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-main 2022-11-25 04:48 UTC

This package is auto-updated.

Last update: 2026-03-16 11:23:30 UTC


README

Simply add to your spork app through composer!

composer require spork/development

And register the Service Provider in your Spork App's config/app.php file. That will automatically add the Development entry to the menu.

If you're trying to use this outside of spork, you'll want the following in your EventServiceProvider

PublishGitInformationRequested::class => [
    SendGitInformationToChannel::class
],

RedeployRequested::class => [
    DeleteDevelopmentFiles::class,
    CopyTemplateIfApplicableListener::class,
],