-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
43 lines (43 loc) · 967 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
38
39
40
41
42
43
{
"name": "koesie10/lua-serializer",
"keywords": [
"lua",
"serializer",
"serialization",
"deserialization",
"parser"
],
"description": "A Lua serializer/deserializer",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Koen Vlaswinkel",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4"
},
"require-dev": {
"php": ">=5.5",
"jms/serializer": "~1.1",
"phpunit/phpunit": "~4.4",
"symfony/form": "~2.8",
"symfony/validator": "~2.8",
"doctrine/common": "~2.6"
},
"suggest": {
"jms/serializer": "Used to serialize/deserialize in e.g. Symfony2."
},
"autoload": {
"psr-4": {
"Vlaswinkel\\Lua\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Vlaswinkel\\Lua\\Tests\\": "tests"
}
}
}