diff options
author | Remi Collet <remi@remirepo.net> | 2018-01-29 07:54:01 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2018-01-29 07:54:01 +0100 |
commit | 12fa5d42db61d23bb50d9b51e278f4f533f864d8 (patch) | |
tree | 4a9d010ad1038a5054e73d7f3ed36c38f3327257 /composer.json | |
parent | d0caaabffea64ba196585512eccc7f5217d98680 (diff) |
Update to 1.0.42
switch to phpunit 6 and phpspec 4
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 12 |
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" }, |