From 08fff2499d0543253229a7d41b63c1e8afe372d6 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 11 Apr 2018 13:09:01 +0200 Subject: v2.9.3 --- composer.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index b4cc8c7..f9f96e4 100644 --- a/composer.json +++ b/composer.json @@ -41,7 +41,8 @@ "test/autoload.php" ], "psr-4": { - "ZendTest\\Db\\": "test/" + "ZendTest\\Db\\": "test/unit", + "ZendIntegrationTest\\Db\\": "test/integration" } }, "config": { @@ -64,8 +65,9 @@ ], "cs-check": "phpcs", "cs-fix": "phpcbf", - "test": "phpunit --colors=always", + "test": "phpunit --colors=always --testsuite \"unit test\"", "test-coverage": "phpunit --colors=always --coverage-clover clover.xml", + "test-integration" : "phpunit --colors=always --testsuite \"integration test\"", "upload-coverage": "coveralls -v" } } -- cgit