From e5327e99e921c892b9a3155a0cb9f6cc22318e94 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 4 Jun 2018 09:49:41 +0200 Subject: new package --- composer.json | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..aad7516 --- /dev/null +++ b/composer.json @@ -0,0 +1,45 @@ +{ + "name": "php-cs-fixer/phpunit-constraint-xmlmatchesxsd", + "type": "library", + "description": "Constraint for testing XML against XSD.", + "license": "MIT", + "authors": [ + { + "name": "SpacePossum" + }, + { + "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", + "phpunitgoodpractices/traits": "^1.3.2", + "symfony/phpunit-bridge": "^3.2.2 || ^4.0" + }, + "config": { + "optimize-autoloader": true, + "sort-packages": true + }, + "autoload": { + "psr-4": { + "PhpCsFixer\\PhpunitConstraintXmlMatchesXsd\\": "src/" + }, + "files": [ + "src/Constraint/XmlMatchesXsd.php" + ] + }, + "autoload-dev": { + "psr-4": { + "PhpCsFixer\\PhpunitConstraintXmlMatchesXsd\\Tests\\": "tests/" + } + } +} -- cgit