summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-04-11 13:09:01 +0200
committerRemi Collet <remi@remirepo.net>2018-04-11 13:11:57 +0200
commit9a195f12b3d4251a57a4f4e4719a37426fb11ccb (patch)
treec81ae3efb0bcac6bb545a9c5cf91bf7a82c85c6b /composer.json
parentf9f152ff040f41eb9c3c5c536777f9db10c94e32 (diff)
v2.9.3
(cherry picked from commit 08fff2499d0543253229a7d41b63c1e8afe372d6)
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json6
1 files changed, 4 insertions, 2 deletions
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"
}
}