spork / development
A plugin meant for developing things!
dev-main
2022-11-25 04:48 UTC
Requires
- php: >=8.0
Requires (Dev)
- orchestra/testbench: ^7.0
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,
],