-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 997 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
{
"name": "mlukman/symfony-config-oop",
"version": "1.0.0",
"description": "Simplify implementation of custom configuration for Symfony application/bundle by using classes to both define and parse configurations",
"type": "library",
"require": {
"php": ">=8.1",
"symfony/config": "^6.1|^7.0",
"symfony/serializer": "^6.1|^7.0",
"symfony/yaml": "^6.1|^7.0"
},
"autoload": {
"psr-4": {
"MLukman\\SymfonyConfigOOP\\": "src/"
}
},
"license": "MIT",
"authors": [
{
"name": "Muhammad Lukman Nasaruddin",
"email": "[email protected]"
}
],
"autoload-dev": {
"psr-4": {
"MLukman\\SymfonyConfigOOP\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/debug-bundle": "^6.1|^7.0",
"symfony/phpunit-bridge": "^6.1|^7.0",
"symfony/yaml": "^6.1|^7.0"
}
}