Skip to content

Commit ab4811b

Browse files
authored
Require tarantool/queue 0.10. (#2)
1 parent 91ef2c6 commit ab4811b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/qa.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
operating-system: [ubuntu-latest]
13-
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0']
13+
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1']
1414
runs-on: ${{ matrix.operating-system }}
1515
steps:
1616
- name: Checkout
@@ -50,7 +50,7 @@ jobs:
5050
- name: Setup PHP
5151
uses: shivammathur/setup-php@v2
5252
with:
53-
php-version: '8.0'
53+
php-version: '8.1'
5454
coverage: none
5555

5656
- name: Get composer cache directory
@@ -80,7 +80,7 @@ jobs:
8080
- name: Setup PHP
8181
uses: shivammathur/setup-php@v2
8282
with:
83-
php-version: '7.4'
83+
php-version: '8.1'
8484
coverage: none
8585

8686
- name: Get composer cache directory

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^7.1|^8",
14-
"tarantool/queue": "^0.9"
13+
"php": "^7.2.5|^8",
14+
"tarantool/queue": "^0.10"
1515
},
1616
"require-dev": {
1717
"friendsofphp/php-cs-fixer": "^3",

tests/JobBuilderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public function testBuildFull() : void
6363

6464
public function testBuildServiceArgs() : void
6565
{
66-
[$data, ] = JobBuilder::fromService('service_foo', ['foo'])
66+
[$data] = JobBuilder::fromService('service_foo', ['foo'])
6767
->withServiceArg('bar')
6868
->withServiceArg('baz', 'qux')
6969
->build();

0 commit comments

Comments
 (0)