Package Data | |
---|---|
Maintainer Username: | pmatseykanets |
Maintainer Contact: | pmatseykanets@gmail.com (Peter Matseykanets) |
Package Create Date: | 2015-09-01 |
Package Last Update: | 2023-02-14 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:15:02 |
Package Statistics | |
---|---|
Total Downloads: | 79,649 |
Monthly Downloads: | 265 |
Daily Downloads: | 5 |
Total Stars: | 42 |
Total Watchers: | 3 |
Total Forks: | 6 |
Total Open Issues: | 2 |
This package brings a set of artisan commands that allows you manage your Beanstalkd job queues.
You can install the package via composer:
Laravel 5.6
$ composer require pmatseykanets/artisan-beans
Laravel <= 5.5
$ composer require pmatseykanets/artisan-beans:1.0.0
If you're using Laravel < 5.5 or if you have package auto-discovery turned off you have to manually register the service provider:
// config/app.php
'providers' => [
...
Pvm\ArtisanBeans\ArtisanBeansServiceProvider::class,
],
You're good to go. Run php artisan
and you'll see new commands under the beans
namespace.
$ php artisan
beans
beans:bury Bury a job
beans:delete Delete a job
beans:export Export jobs
beans:import Import jobs
beans:kick Kick a job
beans:move Move jobs between tubes
beans:pause Pause the tube
beans:peek Peek a job
beans:purge Purge jobs from the tube
beans:put Put a job into the tube
beans:server Show server statistics
beans:tube Show tube statistics
beans:unpause Unpause the tube
If you discover any security related issues, please email pmatseykanets@gmail.com instead of using the issue tracker.
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.