{
"name": "lawondyss/config",
"description": "Base class for creating own class of configuration. Better than a associative array :-)",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ladislav Vondrá?ek",
"email": "lad.von@gmail.com"
}
],
"require": {
"php": ">=8.0"
},
"require-dev": {
"nette/tester": "^2.5",
"tracy/tracy": "^2.10",
"squizlabs/php_codesniffer": "^3.7",
"slevomat/coding-standard": "^8.14"
},
"autoload": {
"psr-4": {
"Lawondyss\\Config\\": "src/Config"
}
},
"scripts": {
"tests": "tester tests/",
"phpcs": "phpcs --no-cache -sp src/Config",
"phpcbf": "phpcbf src/Config"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}
|