diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/composer.json b/composer.json index abf583875..d35548f94 100644 --- a/composer.json +++ b/composer.json @@ -28,14 +28,23 @@ "ext-mbstring" : "*", "ext-xml" : "*", "ext-openssl" : "*", - "sabre/dav" : "~3.2" + "sabre/dav" : "~3.2", + "michelf/php-markdown" : "^1.7", + "bshaffer/oauth2-server-php": "^1.9", + "ezyang/htmlpurifier": "^4.9", + "simplepie/simplepie": "~1.5", + "league/html-to-markdown": "^4.4", + "pear/text_languagedetect": "^1.0", + "commerceguys/intl": "~0.7", + "lukasreschke/id3parser": "^0.0.1" }, "require-dev" : { - "php" : ">=5.6", - "phpunit/phpunit" : "^5.6", + "php" : ">=7.0", + "phpunit/phpunit" : "^6.1", "behat/behat" : "@stable", "behat/mink-extension": "@stable", - "behat/mink-goutte-driver": "@stable" + "behat/mink-goutte-driver": "@stable", + "php-mock/php-mock-phpunit": "^2.0" }, "autoload" : { "psr-4" : { @@ -50,6 +59,11 @@ }, "minimum-stability" : "stable", "config" : { - "notify-on-install" : false - } -}
\ No newline at end of file + "notify-on-install" : false, + "optimize-autoloader" : true + }, + "repositories": [{ + "type": "vcs", + "url": "https://github.com/simplepie/simplepie" + }] +} |