summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-06-04 09:41:16 +0200
committerRemi Collet <remi@remirepo.net>2018-06-04 09:41:16 +0200
commit82250a84eaffa2323fbaa74b747a5c5601b3fed4 (patch)
tree238d3477a4cdd0aa0fc871ea0275c690dc5eaf1c /composer.json
New package
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json41
1 files changed, 41 insertions, 0 deletions
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/"
+ }
+ }
+}