Skip to content

Commit

Permalink
upgrade libs
Browse files Browse the repository at this point in the history
  • Loading branch information
nekufa committed Jun 24, 2020
1 parent 642811d commit 02ed91a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"require": {
"php": "^7.4",
"symfony/lock": "^5.0",
"tarantool/client": "^0.7"
"tarantool/client": "^0.8.0"
},
"suggest": {
"ext-msgpack": "For using PeclPacker.",
"rybakit/msgpack": "For using PurePacker."
},
"require-dev": {
"phpunit/phpunit": "^6.5.4",
"rybakit/msgpack": "^0.6.1"
"phpunit/phpunit": "^9.2.5",
"rybakit/msgpack": "^0.7.0"
},
"autoload-dev": {
"psr-4": {
Expand Down
1 change: 0 additions & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
verbose="true"
bootstrap="./vendor/autoload.php"
>
Expand Down
4 changes: 2 additions & 2 deletions tests/TarantoolStoreTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ protected function getStore(): PersistingStoreInterface
return $this->store;
}

public function setup()
public function setUp(): void
{
$host = getenv('TARANTOOL_CONNECTION_HOST');
$port = getenv('TARANTOOL_CONNECTION_PORT');
Expand All @@ -41,7 +41,7 @@ public function setup()
$this->store = new TarantoolStore($this->client);
}

public function tearDown()
public function tearDown(): void
{
$this->schema->tearDown();
}
Expand Down

0 comments on commit 02ed91a

Please sign in to comment.