-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 1019 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
{
"authors": [
{
"name": "Michel Chowanski",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"BestIt\\ODMParamConverterBundle\\": "src/ODMParamConverterBundle"
}
},
"autoload-dev": {
"psr-4": {
"BestIt\\ODMParamConverterBundle\\Tests\\": "tests"
}
},
"description": "Provide a symfony param converter for the best it odm",
"license": "proprietary",
"minimum-stability": "dev",
"name": "bestit/odm-param-converter-bundle",
"prefer-stable": true,
"require": {
"php": "^7.0",
"symfony/dependency-injection": "^3.1",
"symfony/yaml": "^3.1",
"symfony/config": "^3.1",
"symfony/http-kernel": "^3.1",
"sensio/framework-extra-bundle": "^3.0.2",
"bestit/commercetools-odm-bundle": "^0.54 || ^1"
},
"require-dev": {
"phpunit/phpunit": "^5.5",
"squizlabs/php_codesniffer": "^2.8",
"sebastian/phpcpd": "^3.0",
"phpmd/phpmd": "^2.6",
"phploc/phploc": "^3.0"
},
"type": "lib"
}