industrious / laravel-scheduler-output-to-url
A laravel package for the scheduler to post output to a url.
Package info
github.com/industrious-agency/laravel-scheduler-output-to-url
pkg:composer/industrious/laravel-scheduler-output-to-url
v2.0
2023-07-17 15:04 UTC
Requires
- php: ^8.0
- illuminate/support: ^9.0
Requires (Dev)
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.0
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
About this package
Laravel scheduler output to url was created for the sole purpose to have the ability to submit the scheduled command output to a designated URL I.E. https://healthchecks.io/ via HTTP request (I.E. POST/GET etc).
Example
$schedule
->command(SomeCommand::class)
->dailyAt('00:00')
->sendOutputToUrl('https://hc-ping.com/uuid-here');