Skip to content

Commit 02ed91a

Browse files
committed
upgrade libs
1 parent 642811d commit 02ed91a

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
"require": {
88
"php": "^7.4",
99
"symfony/lock": "^5.0",
10-
"tarantool/client": "^0.7"
10+
"tarantool/client": "^0.8.0"
1111
},
1212
"suggest": {
1313
"ext-msgpack": "For using PeclPacker.",
1414
"rybakit/msgpack": "For using PurePacker."
1515
},
1616
"require-dev": {
17-
"phpunit/phpunit": "^6.5.4",
18-
"rybakit/msgpack": "^0.6.1"
17+
"phpunit/phpunit": "^9.2.5",
18+
"rybakit/msgpack": "^0.7.0"
1919
},
2020
"autoload-dev": {
2121
"psr-4": {

phpunit.xml.dist

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
convertWarningsToExceptions="true"
99
processIsolation="false"
1010
stopOnFailure="false"
11-
syntaxCheck="false"
1211
verbose="true"
1312
bootstrap="./vendor/autoload.php"
1413
>

tests/TarantoolStoreTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ protected function getStore(): PersistingStoreInterface
2727
return $this->store;
2828
}
2929

30-
public function setup()
30+
public function setUp(): void
3131
{
3232
$host = getenv('TARANTOOL_CONNECTION_HOST');
3333
$port = getenv('TARANTOOL_CONNECTION_PORT');
@@ -41,7 +41,7 @@ public function setup()
4141
$this->store = new TarantoolStore($this->client);
4242
}
4343

44-
public function tearDown()
44+
public function tearDown(): void
4545
{
4646
$this->schema->tearDown();
4747
}

0 commit comments

Comments
 (0)