forked from consistence/consistence-jms-serializer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.02 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
{
"name": "consistence/consistence-jms-serializer",
"description": "Integration of Consistence library with JMS Serializer",
"license": "MIT",
"authors": [
{
"name": "Vašek Purchart",
"email": "[email protected]",
"homepage": "http://vasekpurchart.cz"
}
],
"require": {
"php": "^7.2",
"consistence/consistence": "^2.0.2",
"jms/serializer": "^3.2"
},
"require-dev": {
"ext-simplexml": "*",
"consistence/coding-standard": "3.10.1",
"doctrine/annotations": "1.14.2",
"maglnet/composer-require-checker": "2.0",
"php-parallel-lint/php-console-highlighter": "1.0",
"php-parallel-lint/php-parallel-lint": "1.3.2",
"phing/phing": "2.17.2",
"phpunit/phpunit": "8.5.25"
},
"autoload": {
"psr-4": { "Consistence\\JmsSerializer\\": [ "src" ] },
"classmap": [ "src" ]
},
"autoload-dev": {
"psr-4": { "Consistence\\JmsSerializer\\": [ "tests" ] },
"classmap": [ "tests" ]
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}