thenpingme / laravel
Zero config scheduled task monitoring for Laravel
Installs: 130 842
Dependents: 0
Suggesters: 1
Security: 0
Stars: 18
Watchers: 5
Forks: 5
Open Issues: 2
Requires
- php: ^8.0
- laravel/framework: ^9.45 || ^10.0 || ^11.0
- laravel/pint: 1.17.2
- lorisleiva/cron-translator: ^0.3
- nesbot/carbon: ^2.62
- nunomaduro/laravel-console-task: ^1.9
- sixlive/dotenv-editor: ^2.0
- spatie/laravel-package-tools: ^1.11
Requires (Dev)
- ergebnis/composer-normalize: ^2.23
- larastan/larastan: ^2.3
- mockery/mockery: ^1.4.2
- nikic/php-parser: ^4.15
- orchestra/testbench: ^7.0 || ^8.0 || ^9.0
- pestphp/pest: ^1.17
- pestphp/pest-plugin-parallel: ^0.3.0
- rector/rector: ^1.2
- 3.x-dev
- 3.6.0
- 3.5.0
- 3.4.1
- 3.4.0
- 3.3.0
- 3.2.1
- 3.2.0
- 3.1.0
- 3.0.1
- 3.0.0
- 2.x-dev
- 2.5.0
- 2.4.9
- 2.4.8
- 2.4.7
- 2.4.6
- 2.4.5
- 2.4.4
- 2.4.3
- 2.4.2
- 2.4.1
- 2.4.0
- 2.3.11
- 2.3.10
- 2.3.9
- 2.3.8
- 2.3.7
- 2.3.6
- 2.3.5
- 2.3.4
- 2.3.3
- 2.3.2
- 2.3.1
- 2.3.0
- 2.2.1
- 2.2.0
- 2.1.0
- 2.0.0
- 1.3.11
- 1.3.10
- 1.3.9
- 1.3.8
- 1.3.7
- 1.3.6
- 1.3.5
- 1.3.4
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3.0
- 1.2.0
- 1.1.0
- 1.0.0
- dev-main
- dev-feature/support-scheduled-background-task-finished
This package is auto-updated.
Last update: 2024-10-31 01:46:52 UTC
README
thenping.me is a hands-free scheduled task monitoring application for your Laravel projects.
You need to have a thenping.me account in order to make use of the monitoring aspect, however, you are free to use the list command to identify your application's scheduled tasks.
- If using Laravel ^7.0|^8.0, use version ^2.0
- If using Laravel ^9.0, use version ^3.0
- Support for
ScheduledTaskFailed
is available since 2.1.0 - Version 1.3.0 is the first public-release of this companion package.
In order to avoid collisions between monitored scheduled tasks when using scheduled closures, you must ensure that each has a unique description()
set.
Installation
You can install the package via composer:
composer require thenpingme/laravel
Usage
Once you have created a new project within thenping.me, you will need to run the installation command.
php artisan thenpingme:setup <project-id>
This will automatically compile your scheduled tasks, check they are valid and unique, and sync them with thenping.me, in order to be able to monitor them.
Each time you deploy your application, you should include the thenpingme:sync
command as part of the deployment strategy, in order to ensure any new tasks that were added in the latest release are monitored.
php artisan thenpingme:sync
Note: Any tasks that are changed as part of a sync operation will replace their monitored counterpart, as it is not possible to track the configuration of a scheduled task between releases.
You will be notified of any changes to your monitored tasks via email notification.
If you would like to check on your application's configured tasks, you may run the thenpingme:schedule
command.
To ensure that your tasks can be uniquely identified by thenping.me, use the thenpingme:verify
command.
Testing
composer test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email support@thenping.me instead of using the issue tracker.
Credits
License
The MIT. Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.