-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 846 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": "harm-less/php-encoder",
"type": "library",
"description": "Encoder to intelligently convert an entire PHP object to Json or XML e.g.",
"keywords": ["php", "encoding", "encode", "decoding", "decode", "conversion", "object conversion", "object", "json", "xml"],
"homepage": "https://github.com/harm-less/php-encoder",
"license": "MIT",
"authors": [
{
"name": "Harm van der Werf",
"email": "harmvdwerf@gmail.com",
"role": "Creator/Developer"
}
],
"require": {
"php": ">=5.3.0",
"openlss/lib-array2xml": "~0.0.9"
},
"require-dev": {
"phpunit/phpunit": "4.5.*",
"phpunit/php-code-coverage": "2.x"
},
"autoload": {
"psr-4": {
"PE\\": "src/PE"
}
},
"autoload-dev": {
"psr-4": {
"PE\\Tests\\": "tests/PE/Tests",
"PE\\Nodes\\": "tests/PE/Nodes",
"PE\\Samples\\": "tests/PE/Samples"
}
}
}