From 12fa5d42db61d23bb50d9b51e278f4f533f864d8 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 29 Jan 2018 07:54:01 +0100 Subject: Update to 1.0.42 switch to phpunit 6 and phpspec 4 --- composer.json | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'composer.json') 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" }, -- cgit