forked from shulard/atoum-xml-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 1016 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": "shulard/atoum-xml-extension",
"type": "library",
"description": "The atoum xml extension allows you to make assertions on XML files",
"keywords": ["atoum", "test", "unit testing", "xml", "schema validation", "extension", "atoum-extension"],
"homepage": "http://www.atoum.org",
"license": "Apache-2.0",
"authors": [
{
"name": "Stéphane HULARD",
"email": "[email protected]"
}
],
"require": {
"atoum/atoum": "^2.8 || ^3.0",
"ext-dom": "*",
"ext-simplexml": "*",
"ext-libxml": "*"
},
"require-dev": {
"atoum/praspel-extension": "~0.16",
"squizlabs/php_codesniffer": "~2"
},
"autoload": {
"psr-4": {
"mageekguy\\atoum\\xml\\": "classes"
},
"files": ["autoloader.php"]
},
"scripts": {
"test": "atoum --test-ext",
"cbf": "phpcbf --standard=phpcs.xml .",
"cs": "phpcs --standard=phpcs.xml ."
}
}