Files
config/composer.json
2023-11-01 18:01:51 -04:00

45 lines
1.1 KiB
JSON

{
"name": "siteworxpro/config",
"type": "library",
"description": "Lightweight configuration file loader that supports PHP, INI, XML, JSON, and YAML files",
"keywords": ["configuration", "config", "json", "yaml", "yml", "ini", "xml", "unframework", "microphp"],
"homepage": "http://hassankhan.me/config/",
"license": "MIT",
"authors": [
{
"name": "Hassan Khan",
"role": "Developer",
"homepage": "http://hassankhan.me/"
},
{
"name": "Ron Rise",
"role": "Contributer"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"scrutinizer/ocular": "~1.1",
"squizlabs/php_codesniffer": "~3.6.1",
"slevomat/coding-standard": "^7.0.18",
"symfony/yaml": "~3.4",
"ext-dom": "*",
"ext-libxml": "*"
},
"suggest": {
"symfony/yaml": "~3.4"
},
"autoload": {
"psr-4": {
"Siteworx\\Config\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Siteworx\\Config\\Test\\": "tests"
}
}
}