From 82250a84eaffa2323fbaa74b747a5c5601b3fed4 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 4 Jun 2018 09:41:16 +0200 Subject: New package --- composer.json | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..940c105 --- /dev/null +++ b/composer.json @@ -0,0 +1,41 @@ +{ + "name": "php-cs-fixer/phpunit-constraint-isidenticalstring", + "type": "library", + "description": "Constraint for testing strings considering not-same line endings.", + "license": "MIT", + "authors": [ + { + "name": "Dariusz RumiƄski", + "email": "dariusz.ruminski@gmail.com" + } + ], + "require": { + "php": "^5.5 || ^7.0", + "phpunit/phpunit": "^5.7.23 || ^6.4.3 || ^7.0", + "phpunitgoodpractices/polyfill": "^1.0" + }, + "conflict": { + "hhvm": "*" + }, + "require-dev": { + "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0", + "symfony/phpunit-bridge": "^3.2.2 || ^4.0" + }, + "config": { + "optimize-autoloader": true, + "sort-packages": true + }, + "autoload": { + "psr-4": { + "PhpCsFixer\\PhpunitConstraintIsIdenticalString\\": "src/" + }, + "files": [ + "src/Constraint/IsIdenticalString.php" + ] + }, + "autoload-dev": { + "psr-4": { + "PhpCsFixer\\PhpunitConstraintIsIdenticalString\\Tests\\": "tests/" + } + } +} -- cgit