oxid-sql-logger/composer.json

32 lines
790 B
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
},
"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
}
]
}