Skip to content

Commit

Permalink
Bump Laravel version support
Browse files Browse the repository at this point in the history
  • Loading branch information
KinaneD committed Jun 16, 2022
1 parent d77b16f commit 1f85971
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ php:
- 7.2
- 7.3
- 7.4
- 8.0
- 8.1
before_script: composer install
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM vinelab/nginx-php:7.4
FROM vinelab/nginx-php:8.1

COPY . /code
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ Starting version [v0.4.2](https://github.com/Vinelab/bowler/releases/tag/v0.4.2)

Starting version [v0.5.0](https://github.com/Vinelab/bowler/releases/tag/v0.5.0) this library requires Laravel 5.7 or later versions.

Starting version [v0.9.0](https://github.com/Vinelab/bowler/releases/tag/v0.9.0) this library requires Laravel 6.0 or later versions.

## Setup

Install the package via Composer:
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@
],

"require": {
"php": "^7.0",
"php-amqplib/php-amqplib": "v3.0.*",
"illuminate/console": "5.4.*|5.5.*|5.6.*|5.7.*|5.8.* || ^6 || ^7 || ^8 || ^9",
"illuminate/support": "5.4.*|5.5.*|5.6.*|5.7.*|5.8.* || ^6 || ^7 || ^8 || ^9",
"illuminate/filesystem": "5.4.*|5.5.*|5.6.*|5.7.*|5.8.* || ^6 || ^7 || ^8 || ^9",
"php": "8.*",
"php-amqplib/php-amqplib": "v3.2.*",
"illuminate/console": "^6 || ^7 || ^8 || ^9",
"illuminate/support": "^6 || ^7 || ^8 || ^9",
"illuminate/filesystem": "^6 || ^7 || ^8 || ^9",
"vinelab/http": "^1.5"
},

"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "3.4.* || ^4",
"orchestra/testbench": "4.9.* || ^4 || ^5 || ^6 || ^7",
"phpunit/phpunit": "~5.7 || ~8.3 || ^9"
},

Expand Down
2 changes: 1 addition & 1 deletion tests/Console/Commands/ConsumerHealthCheckCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Vinelab\Bowler\Connection;
use Vinelab\Bowler\Tests\TestCase;
use PhpAmqpLib\Channel\AMQPChannel;
use Illuminate\Foundation\Testing\PendingCommand;
use Illuminate\Testing\PendingCommand;
use PhpAmqpLib\Exception\AMQPProtocolChannelException;

/**
Expand Down

0 comments on commit 1f85971

Please sign in to comment.