-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
36 lines (36 loc) · 1.04 KB
/
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
{
"name": "kingson-de/marshal-xml-serializer",
"description": "Marshal XML is serializing / marshalling data structures to XML. It is also deserializing / unmarshalling XML back to the data structures.",
"keywords": ["serializer","marshalling","serialization","marshal","mappers","xml","cdata","deserializer","unmarshalling"],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Martin Ossowski",
"email": "martin.ossowski@googlemail.com"
}
],
"autoload": {
"psr-4": {
"KingsonDe\\Marshal\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"KingsonDe\\Marshal\\": "tests"
}
},
"require": {
"php": "^7.0",
"ext-dom": "*",
"kingson-de/marshal-serializer": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^6.5"
},
"scripts": {
"test": "phpunit",
"test-dbg": "phpdbg -qrr vendor/phpunit/phpunit/phpunit",
"quicktest": "phpunit --no-coverage"
}
}