All Projects → pmatseykanets → artisan-beans

pmatseykanets / artisan-beans

Licence: MIT License
Easily manage your Beanstalkd job queues right from the Laravel artisan command

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to artisan-beans

artisan-shortcuts
🍰 Register shortcuts to execute multiple artisan commands
Stars: ✭ 56 (+36.59%)
Mutual labels:  laravel-package, artisan-command
laravel-migrate-check
An artisan command to check for pending migrations with proper exit code
Stars: ✭ 53 (+29.27%)
Mutual labels:  laravel-package, artisan-command
track-who
Laravel Traits for tracking who's done what to your models
Stars: ✭ 29 (-29.27%)
Mutual labels:  laravel-package
searchable
Pattern-matching search and reusable queries in laravel.
Stars: ✭ 28 (-31.71%)
Mutual labels:  laravel-package
devtube
Laravel YouTube and Online Video viewing and download interface.
Stars: ✭ 30 (-26.83%)
Mutual labels:  laravel-package
coolbeans
Coolbeans is a distributed work queue that implements the beanstalkd protocol.
Stars: ✭ 56 (+36.59%)
Mutual labels:  beanstalkd
smart-schema
A Laravel package to enable auto generation of forms
Stars: ✭ 18 (-56.1%)
Mutual labels:  laravel-package
nova-url-field
A URL input and link field for Laravel Nova
Stars: ✭ 96 (+134.15%)
Mutual labels:  laravel-package
magento-laravel-api
A simple Magento 2 REST API Object Oriented wrapper for Laravel applications.
Stars: ✭ 45 (+9.76%)
Mutual labels:  laravel-package
maintenance-mode
An enhanced maintenance mode for Laravel.
Stars: ✭ 117 (+185.37%)
Mutual labels:  laravel-package
active-state
Laravel Active State Url Helper For Request
Stars: ✭ 45 (+9.76%)
Mutual labels:  laravel-package
laravel-miniprogram-poster
Use Laravel to building a miniprogram poster.
Stars: ✭ 72 (+75.61%)
Mutual labels:  laravel-package
Laravel-Unsplash-Wrapper
A Laravel wrapper for Unsplash API's.
Stars: ✭ 21 (-48.78%)
Mutual labels:  laravel-package
phpcsfixer-preset
Use the same php-cs-fixer configuration across all of your projects, with presets for common project layouts (Laravel, Composer packages, etc.).
Stars: ✭ 22 (-46.34%)
Mutual labels:  laravel-package
email-checker
Provides email verification on the go.
Stars: ✭ 116 (+182.93%)
Mutual labels:  laravel-package
laravel-sms-api
Laravel package to provide SMS API integration.
Stars: ✭ 84 (+104.88%)
Mutual labels:  laravel-package
Anar
laravel package : artisan commands for create Repository and provider
Stars: ✭ 25 (-39.02%)
Mutual labels:  artisan-command
panichd
Ticketing system for Laravel 5.1 - 8.x. Allows to create new tickets via form only. Includes file attachments, ticket tags, filtering, scheduling and e-mail notifications.
Stars: ✭ 78 (+90.24%)
Mutual labels:  laravel-package
dropzoner
Laravel package for image upload using DropzoneJS
Stars: ✭ 46 (+12.2%)
Mutual labels:  laravel-package
Base62
PHP Base62 encoder and decoder for integers and big integers with Laravel 5 support.
Stars: ✭ 16 (-60.98%)
Mutual labels:  laravel-package

artisan-beans

StyleCI Latest Stable Version Total Downloads License

This package brings a set of artisan commands that allows you manage your Beanstalkd job queues.

If you find this package usefull, please consider bying me a coffee.

Buy Me a Coffee at ko-fi.com

Contents

Installation

You can install the package via composer:

Laravel 6,7,8 (Pheanstalk 4)

composer require pmatseykanets/artisan-beans

Laravel 5.6+, Laravel 6

composer require pmatseykanets/artisan-beans:3.0.0

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,
],

Usage

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

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].