-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 954 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 954 Bytes
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
{
"name": "opensky/runtime-config-bundle",
"type": "symfony-bundle",
"description": "This bundle provides a way to inject parameters into services at runtime by exposing a RuntimeParameterBag service, which functions exactly like Symfony2's own ParameterBags.",
"keywords": ["symfony", "bundle", "runtime", "config"],
"homepage": "https://github.com/opensky/OpenSkyRuntimeConfigBundle",
"license": "BSD-3-Clause",
"require": {
"php": ">=7.1",
"ext-json": "*",
"doctrine/orm": "^2.4",
"symfony/doctrine-bridge": "^3.0|^4.0|^5.0",
"symfony/framework-bundle": "^3.0|^4.0|^5.0",
"symfony/validator": "^3.0|^4.0|^5.0",
"symfony/yaml": "^3.0|^4.0|^5.0",
"twig/twig": "^2.13|^3.0.4"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0"
},
"autoload": {
"psr-4": {
"OpenSky\\Bundle\\RuntimeConfigBundle\\": ""
}
}
}