spork/development

A plugin meant for developing things!

Fund package maintenance!
Ko Fi
austinkregel

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:Vue

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

This package is auto-updated.

Last update: 2024-11-16 08:22:52 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,
],