-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
29 lines (29 loc) · 923 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
{
"name": "wepesi/optionsresolver",
"description": "The OptionsResolver component helps you configure objects with option arrays. It supports default values, option constraints and lazy options.",
"type": "library",
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"Wepesi\\Resolver\\": "src/"
}
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/bim-g/OptionsResolver/issues",
"forum": "https://github.com/bim-g/OptionsResolver",
"wiki": "https://github.com/bim-g/OptionsResolver",
"docs": "https://github.com/bim-g/OptionsResolver",
"source": "https://github.com/bim-g/OptionsResolver"
},
"authors": [
{
"name": "bim-g",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php" : ">=7.4"
}
}