Skip to content

Commit

Permalink
Require tarantool/queue 0.10. (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
luscinium committed Oct 11, 2022
1 parent 91ef2c6 commit ab4811b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0']
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1']
runs-on: ${{ matrix.operating-system }}
steps:
- name: Checkout
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.1'
coverage: none

- name: Get composer cache directory
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
php-version: '8.1'
coverage: none

- name: Get composer cache directory
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
}
],
"require": {
"php": "^7.1|^8",
"tarantool/queue": "^0.9"
"php": "^7.2.5|^8",
"tarantool/queue": "^0.10"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
Expand Down
2 changes: 1 addition & 1 deletion tests/JobBuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function testBuildFull() : void

public function testBuildServiceArgs() : void
{
[$data, ] = JobBuilder::fromService('service_foo', ['foo'])
[$data] = JobBuilder::fromService('service_foo', ['foo'])
->withServiceArg('bar')
->withServiceArg('baz', 'qux')
->build();
Expand Down

0 comments on commit ab4811b

Please sign in to comment.