forked from eclipxe13/XmlSchemaValidator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 954 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "eclipxe/xmlschemavalidator",
"description": "PHP Library for XML Schema Validations",
"keywords": ["xml", "xsd", "validation", "xmlschema"],
"homepage": "https://github.com/eclipxe13/XmlSchemaValidator",
"license": "MIT",
"authors": [
{
"name": "Carlos C Soto",
"email": "eclipxe13@gmail.com"
}
],
"require": {
"php": ">=7.0",
"ext-dom": "*",
"ext-libxml": "*"
},
"require-dev": {
"phpunit/phpunit": "^6.2",
"overtrue/phplint": "^1.0",
"squizlabs/php_codesniffer": "^3.0",
"friendsofphp/php-cs-fixer": "^2.4",
"phpstan/phpstan-shim": "^0.9.1"
},
"autoload": {
"psr-4": {
"XmlSchemaValidator\\": "src/XmlSchemaValidator/"
}
},
"autoload-dev": {
"psr-4": {
"XmlSchemaValidatorTests\\": "tests/XmlSchemaValidatorTests/"
}
}
}