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:09:01 +0200
commit08fff2499d0543253229a7d41b63c1e8afe372d6 (patch)
tree696b40b6a06ce9938367f33d557761b0dec669a0 /composer.json
parent134eb252212fcd1e89f91921750d8457254b3d58 (diff)
v2.9.3
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"
}
}