summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2018-01-21 23:35:21 +0100
committerFlorian Pritz <bluewind@xinu.at>2018-01-21 23:35:21 +0100
commita0f12dabc2aef2fd129967838b1294b860ddd6d3 (patch)
tree27a6654cfb04a0700571b5025fdd84030d85f827
parent0fd6f323430ecfc193d5f984f58cd32ae5976502 (diff)
composer: Add extension deps where easily possible
mysql/psql is missing because composer can't do OR easily. Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r--composer.json8
-rw-r--r--composer.lock11
2 files changed, 14 insertions, 5 deletions
diff --git a/composer.json b/composer.json
index 9c9bfe6bf..3caf61b32 100644
--- a/composer.json
+++ b/composer.json
@@ -9,12 +9,16 @@
"source": "https://github.com/Bluewind/filebin"
},
"require": {
- "php": ">=5.5"
+ "php": ">=5.5",
+ "ext-gd": "*",
+ "ext-exif": "*",
+ "ext-phar": "*"
},
"suggest": {
"paragonie/random_compat": "Provides better randomness in PHP 5.x"
},
"require-dev": {
- "phpunit/php-code-coverage": "^4 || ^5"
+ "phpunit/php-code-coverage": "^4 || ^5",
+ "ext-xdebug": "*"
}
}
diff --git a/composer.lock b/composer.lock
index 16bd4a4e5..b64749f56 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"This file is @generated automatically"
],
- "content-hash": "53932bd9db5d52264df582f0589a127e",
+ "content-hash": "2668befb33d9b989434db0ab06fb68b7",
"packages": [],
"packages-dev": [
{
@@ -392,7 +392,12 @@
"prefer-stable": false,
"prefer-lowest": false,
"platform": {
- "php": ">=5.5"
+ "php": ">=5.5",
+ "ext-gd": "*",
+ "ext-exif": "*",
+ "ext-phar": "*"
},
- "platform-dev": []
+ "platform-dev": {
+ "ext-xdebug": "*"
+ }
}