Skip to content

Commit

Permalink
upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mindplay-dk committed Nov 28, 2022
1 parent b80fd38 commit cf5503a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
}
},
"require": {
"php": ">=5.5",
"php": ">=7.3",
"ext-pdo": "*",
"mindplay/unbox": "^2",
"psr/log": "^1"
},
"require-dev": {
"mindplay/testies": "^0.3.2",
"mindplay/testies": "^1.0",
"mindplay/benchpress": "^0.1",
"mockery/mockery": "^0.9",
"mockery/mockery": "^1.5.1",
"phpunit/php-code-coverage": ">=2, <4"
},
"suggest": {
Expand Down
2 changes: 2 additions & 0 deletions test/helpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
use mindplay\sql\model\query\Query;
use mindplay\sql\model\schema\Type;

use function mindplay\testies\{ eq, ok, inspect };

/**
* @param string $sql
*
Expand Down
2 changes: 2 additions & 0 deletions test/test-integration.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
use mindplay\sql\mysql\MySQLDatabase;
use mindplay\sql\postgres\PostgresDatabase;

use function mindplay\testies\{ test, eq };

test(
'can connect to Postgres',
function () use ($config) {
Expand Down
2 changes: 2 additions & 0 deletions test/test-unit.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
use Mockery\MockInterface;
use Psr\Log\LogLevel;

use function mindplay\testies\{ test, eq, ok, expect };

test(
"can quote schema/table/column-names for Postgres",
function () {
Expand Down
2 changes: 2 additions & 0 deletions test/test.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

use function mindplay\testies\{ run, configure, teardown };

require dirname(__DIR__) . '/vendor/autoload.php';

require __DIR__ . '/fixtures.php';
Expand Down

0 comments on commit cf5503a

Please sign in to comment.