PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Andrey Iatsenko   PHP Validate XML Against XSD   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Validate XML Against XSD
Validate XML documents with XSD schema files
Author: By
Last change:
Date: 2 months ago
Size: 1,321 bytes
 

Contents

Class file image Download
{ "name": "yzen.dev/validator-xsd", "version": "0.0.10", "description": "ValidatorXSD is a facade over DOMDocument that will allow you to more conveniently validate your XML file.", "minimum-stability": "dev", "prefer-stable": true, "license": "MIT", "keywords": [ "php", "xml", "xsd", "shema", "validation", "validation xml", "localization" ], "authors": [ { "name": "Andey Iatsenko", "email": "yzen.dev@gmail.com" } ], "config": { "sort-packages": true }, "autoload": { "psr-4": { "ValidatorXSD\\": "src/" } }, "autoload-dev": { "psr-4": { "Tests\\": "tests/" } }, "require": { "php": "^7.4|^8.0", "ext-libxml": "*", "ext-dom": "*" }, "require-dev": { "phpstan/phpstan": "^0.12.37", "mockery/mockery": "^1.0", "phpunit/phpunit": "^9.3", "squizlabs/php_codesniffer": "*" }, "support": { "issues": "https://github.com/yzen-dev/validator-xsd/issues", "source": "https://github.com/yzen-dev/validator-xsd" }, "scripts": { "phpunit": [ "./vendor/phpunit/phpunit/phpunit --configuration ./phpunit.xml" ], "phpstan": [ "./vendor/bin/phpstan analyse -c ./phpstan.neon src" ], "phpcs": [ "./vendor/bin/phpcs --standard=./phpcs.xml -n --no-cache" ] } }