oxid-sql-logger/composer.json

41 lines
1.1 KiB
JSON
Raw Normal View History

2019-08-20 23:34:33 +02:00
{
2019-09-19 17:11:07 +02:00
"name": "d3/oxid-sql-logger",
2019-08-20 23:34:33 +02:00
"description": "Returns all SQL queries in the browser.",
"type": "library",
"require": {
2024-02-02 10:59:40 +01:00
"php": "^8.0",
2020-04-30 20:45:41 +02:00
"monolog/monolog": "^1",
2020-05-13 18:53:56 +02:00
"nilportugues/sql-query-formatter": "^1.2.2",
"firephp/firephp-core": "^0.5.3"
2019-08-20 23:34:33 +02:00
},
2024-02-02 11:33:11 +01:00
"require-dev": {
2024-02-02 11:39:13 +01:00
"friendsofphp/php-cs-fixer": "~3.13.0",
2024-02-02 11:33:11 +01:00
"phpstan/phpstan": "^1.10"
},
2019-08-20 23:34:33 +02:00
"license": "GPL-3.0",
"autoload": {
"psr-4": {
2019-09-19 17:11:07 +02:00
"D3\\OxidSqlLogger\\": "./src"
},
"files": [
"./src/functions.php"
]
2019-08-20 23:34:33 +02:00
},
"authors": [
{
"name": "Tobias Matthaiou",
"email": "developer@tobimat.eu"
2019-09-19 17:11:07 +02:00
},
{
"name": "D3 Data Development (Inh. Thomas Dartsch)",
"email": "info@shopmodule.com",
2020-06-08 10:14:56 +02:00
"homepage": "https://www.d3data.de"
2019-08-20 23:34:33 +02:00
}
2024-02-02 11:33:11 +01:00
],
"scripts": {
2024-02-02 11:39:13 +01:00
"php-cs-fixer": "./vendor/bin/php-cs-fixer fix --config=vendor/d3/oxid-sql-logger/.php-cs-fixer.php",
2024-02-02 11:33:11 +01:00
"phpstan": "./vendor/bin/phpstan --configuration=vendor/d3/oxid-sql-logger/phpstan.neon analyse"
}
2019-08-20 23:34:33 +02:00
}