-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
33 lines (33 loc) · 886 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
{
"name": "ojezu/dynamic-parameter-bundle",
"description": "Symfony3.4 bundle that facilitates dynamic parameter loading at start of each request",
"autoload": {
"psr-4": { "OJezu\\DynamicParameterBundle\\": "src/" }
},
"authors": [
{
"name": "Krzysztof Chrapka",
"email": "composer@ojezu.org"
}
],
"require": {
"symfony/dependency-injection": "^3.4",
"symfony/config": "^3.4",
"symfony/http-kernel": "^3.4",
"symfony/expression-language": "^3.3",
"psr/simple-cache": "^1.0",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.3"
},
"scripts": {
"post-install-cmd": [
"tool/install-hooks"
],
"test": [
"tool/verify-all"
]
},
"license": "MIT"
}