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