-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
45 lines (43 loc) · 1.11 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
37
38
39
40
41
42
43
44
45
{
"name": "krtv/yii2-jms-serializer",
"description": "JMS Serializer extension for the Yii framework",
"type": "yii2-extension",
"keywords": [
"yii2",
"serialization",
"deserialization",
"json",
"jms",
"jms-serializer"
],
"homepage": "https://github.com/krtv/yii2-jms-serializer",
"license": "MIT",
"authors": [
{
"name": "Dmitrii Korotovskii",
"email": "[email protected]",
"homepage": "https://korotovsky.io"
}
],
"support": {
"issues": "https://github.com/krtv/yii2-jms-serializer/issues",
"source": "https://github.com/krtv/yii2-jms-serializer"
},
"require": {
"php": ">=5.5",
"yiisoft/yii2": "*",
"jms/serializer": "~1.0.0|~0.16.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"krtv\\yii2\\serializer\\": "src",
"krtv\\yii2\\serializer\\tests\\": "tests"
}
},
"extra": {
"bootstrap": "krtv\\yii2\\serializer\\Bootstrap"
}
}