-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 905 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 905 Bytes
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
{
"name": "midnite81/xml2array",
"description": "A package to convert XML to an Array with the inbuilt ability to convert to Json, Laravel Collection and Serialize",
"type": "package",
"license": "MIT",
"autoload": {
"psr-4": {
"Midnite81\\Xml2Array\\Tests\\": "tests/",
"Midnite81\\Xml2Array\\": "src/"
}
},
"authors": [
{
"name": "Simon Rogers",
"email": "webdev@midnite.uk"
}
],
"require": {
"php": "^8.1",
"ext-dom": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9",
"orchestra/testbench": "^6.0",
"php-coveralls/php-coveralls": "^2.5"
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": false
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}