oxid-sql-logger/composer.json

41 lines
1.1 KiB
JSON

{
"name": "d3/oxid-sql-logger",
"description": "Returns all SQL queries in the browser.",
"type": "library",
"require": {
"php": "^8.0",
"monolog/monolog": "^1",
"nilportugues/sql-query-formatter": "^1.2.2",
"firephp/firephp-core": "^0.5.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~3.13.0",
"phpstan/phpstan": "^1.10"
},
"license": "GPL-3.0",
"autoload": {
"psr-4": {
"D3\\OxidSqlLogger\\": "./src"
},
"files": [
"./src/functions.php"
]
},
"authors": [
{
"name": "Tobias Matthaiou",
"email": "developer@tobimat.eu"
},
{
"name": "D3 Data Development (Inh. Thomas Dartsch)",
"email": "info@shopmodule.com",
"homepage": "https://www.d3data.de"
}
],
"scripts": {
"php-cs-fixer": "./vendor/bin/php-cs-fixer fix --config=vendor/d3/oxid-sql-logger/.php-cs-fixer.php",
"phpstan": "./vendor/bin/phpstan --configuration=vendor/d3/oxid-sql-logger/phpstan.neon analyse"
}
}