From c95f7c1745ea4df58f5a282bd9b9f0e1e3c89e04 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 25 Jun 2018 11:30:04 +0200 Subject: add mandatory dependency on one PHPUnit version add phpunitgoodpractices/traits 1.5.1 fix autoloader #1594663 --- composer-polyfill.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 composer-polyfill.json (limited to 'composer-polyfill.json') diff --git a/composer-polyfill.json b/composer-polyfill.json new file mode 100644 index 0000000..f26f435 --- /dev/null +++ b/composer-polyfill.json @@ -0,0 +1,30 @@ +{ + "name": "phpunitgoodpractices/polyfill", + "type": "library", + "description": "Lacking future-compat polyfills for PHPUnit.", + "license": "MIT", + "authors": [ + { + "name": "Dariusz RumiƄski", + "email": "dariusz.ruminski@gmail.com" + } + ], + "require": { + "php": "^5.5 || ^7.0", + "phpunit/phpunit": "^4.0 || ^5.3 || ^6.0 || ^7.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.12" + }, + "conflict": { + "hhvm": "*" + }, + "config": { + "optimize-autoloader": true, + "sort-packages": true + }, + "autoload": { + "files": [ "src/aliases.php" ], + "psr-4": { "PHPUnitGoodPractices\\Polyfill\\": "src/" } + } +} -- cgit