Skip to content

Support Laravel 6.0 #24

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 0 additions & 46 deletions .php_cs

This file was deleted.

6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
language: php

php:
- 5.6
- 7.0
- 7.2
- 7.3

matrix:
fast_finish: true
allow_failures:
- php: 7.0

before_script:
- composer install --no-interaction --dev --prefer-dist
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ A Laravel Queue worker that's safe for use with Laravel Doctrine

#### When to use SafeQueue

- [x] You use Laravel 5
- [x] You use Laravel 5 or 6
- [x] You use Laravel Doctrine
- [x] Devops say the CPU usage of `queue:listen` is unacceptable
- [x] You want to do `php artisan queue:work --daemon` without hitting cascading `EntityManager is closed` exceptions
Expand All @@ -21,6 +21,7 @@ Version | Supported Laravel Versions
0.1.* | 5.1, 5.2
0.2.* | ^5.3.16
0.3.* | ^5.4.9
0.4.* | ^6.0.5

#### How it Works

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "maxbrokman/safe-queue",
"description": "A Laravel Doctrine friendly daemonising queue worker for Laravel 5",
"description": "A Laravel Doctrine friendly daemonising queue worker for Laravel 6",
"license": "MIT",
"authors": [
{
Expand All @@ -10,14 +10,14 @@
],
"require": {
"php": ">=5.6",
"illuminate/queue": "^5.4.9",
"illuminate/queue": "^6.0",
"laravel-doctrine/orm": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.3",
"mockery/mockery": "^0.9.4",
"fabpot/php-cs-fixer": "^1.11",
"satooshi/php-coveralls": "^1.0"
"satooshi/php-coveralls": "^1.0",
"friendsofphp/php-cs-fixer": "^2.15"
},
"autoload": {
"psr-4": {
Expand Down
Loading