2021-02-26 16:16:17 +00:00
|
|
|
{
|
|
|
|
"name": "chillerlan/php-settings-container",
|
|
|
|
"description": "A container class for immutable settings objects. Not a DI container. PHP 7.2+",
|
|
|
|
"homepage": "https://github.com/chillerlan/php-settings-container",
|
|
|
|
"license": "MIT",
|
|
|
|
"type": "library",
|
|
|
|
"minimum-stability": "stable",
|
|
|
|
"keywords": [
|
|
|
|
"php7", "helper", "container", "settings"
|
|
|
|
],
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Smiley",
|
|
|
|
"email": "smiley@chillerlan.net",
|
|
|
|
"homepage": "https://github.com/codemasher"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"support": {
|
|
|
|
"issues": "https://github.com/chillerlan/php-settings-container/issues",
|
|
|
|
"source": "https://github.com/chillerlan/php-settings-container"
|
|
|
|
},
|
|
|
|
"require": {
|
2021-11-15 15:33:35 +00:00
|
|
|
"php": "^7.2 || ^8.0",
|
2021-02-26 16:16:17 +00:00
|
|
|
"ext-json": "*"
|
|
|
|
},
|
|
|
|
"require-dev": {
|
2021-11-15 15:33:35 +00:00
|
|
|
"phpunit/phpunit": "^8.4"
|
2021-02-26 16:16:17 +00:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"chillerlan\\Settings\\": "src/"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"chillerlan\\SettingsTest\\": "tests/",
|
|
|
|
"chillerlan\\SettingsExamples\\": "examples/"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|