-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
37 lines (37 loc) · 948 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
36
37
{
"name": "greencape/xml-converter",
"description": "A PHP XML parser and compiler that provides an easy way to convert XML into native PHP arrays and back again. No dependencies on external libraries or extensions.",
"homepage": "https://github.com/GreenCape/xml-converter",
"license": "MIT",
"authors": [
{
"name": "Niels Braczek",
"email": "nbraczek@bsds.de",
"role": "lead"
},
{
"name": "Marat A. Denenberg"
}
],
"support": {
"issues": "https://github.com/GreenCape/xml-converter/issues"
},
"require": {
"php": ">=7.2"
},
"require-dev": {
"phpunit/phpunit": "*",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"classmap": [
"src"
]
},
"archive": {
"exclude": [
"build",
"tests"
]
}
}