forked from sveneisenschmidt/bmecat
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 724 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 724 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
{
"name": "se/bmecat",
"type": "library",
"description": "Allows to build BMEcat documents from PHP and converts them to xml",
"keywords": ["bmecat", "document", "serialization", "xml"],
"homepage": "https://github.com/sveneisenschmidt/bmecat",
"license": "MIT",
"authors": [
{
"name": "Sven Eisenschmidt",
"email": "sven.eisenschmidt@gmail.com"
}
],
"require": {
"php": ">=5.4.0",
"jms/serializer": ">=0.14"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"autoload": {
"psr-0": {
"SE\\Component\\BMEcat\\Tests": "tests/",
"SE\\Component\\BMEcat": "src/"
}
}
}