summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json12
1 files changed, 8 insertions, 4 deletions
diff --git a/composer.json b/composer.json
index ac2986f..6fc135c 100644
--- a/composer.json
+++ b/composer.json
@@ -18,9 +18,8 @@
},
"require-dev": {
"ext-fileinfo": "*",
- "phpunit/phpunit": "~4.8",
- "mockery/mockery": "~0.9",
- "phpspec/phpspec": "^2.2"
+ "phpspec/phpspec": "^3.4",
+ "phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
@@ -30,7 +29,10 @@
"autoload-dev": {
"psr-4": {
"League\\Flysystem\\Stub\\": "stub/"
- }
+ },
+ "files": [
+ "tests/PHPUnitHacks.php"
+ ]
},
"suggest": {
"ext-fileinfo": "Required for MimeType",
@@ -43,6 +45,8 @@
"spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
"srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications",
"league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
+ "ext-ftp": "Allows you to use FTP server storage",
+ "ext-openssl": "Allows you to use FTPS server storage",
"league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
"league/flysystem-ziparchive": "Allows you to use ZipArchive adapter"
},