summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax-Julian Pogner <[email protected]>2017-11-23 20:52:39 +0100
committerMax-Julian Pogner <[email protected]>2017-11-23 20:52:39 +0100
commit60e6f6f5bb408bb9c2dd127f7234886ae93fbb59 (patch)
treee0d23fef759bc008903e3b936e5b30e12b3bab80
parentc52eb3e1605157821301f1ee614ac87fc782fdba (diff)
add missing require-dev
the php extension pdo_sqlite is actually required for development (in order to successfully execute the unit-tests). tested on debian Jessie 8.9 this would for example mean, that the following debian package is required: apt-get install php5-sqlite
-rw-r--r--composer.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/composer.json b/composer.json
index 43ff219..669cf88 100644
--- a/composer.json
+++ b/composer.json
@@ -32,7 +32,8 @@
"test": "phpunit"
},
"require-dev": {
- "phpunit/phpunit": "^4.8"
+ "phpunit/phpunit": "^4.8",
+ "ext-pdo_sqlite": "*"
},
"license": [
"BSD-2-Clause",