1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-30 17:50:00 +02:00

Add PHP extensions to Composer suggestions

This commit is contained in:
Peter Knut
2024-08-13 23:00:00 +02:00
parent 43a0305a23
commit 8a70474651
2 changed files with 20 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ Adminer 4.9.0-dev:
- Elasticsearch 5: Make unusable driver usable again, move it to plugins. - Elasticsearch 5: Make unusable driver usable again, move it to plugins.
- Add new Elasticsearch 7 driver. - Add new Elasticsearch 7 driver.
- Set saving to file as a default export option. - Set saving to file as a default export option.
- Update composer.json.
Adminer 4.8.2 (released 2024-03-16): Adminer 4.8.2 (released 2024-03-16):
Support multi-line table comments Support multi-line table comments

View File

@@ -32,6 +32,25 @@
"vrana/jush": "@dev", "vrana/jush": "@dev",
"vrana/jsshrink": "@dev" "vrana/jsshrink": "@dev"
}, },
"suggest": {
"ext-zlib": "*",
"ext-suhosin": "*",
"ext-mysqli": "*",
"ext-mysql": "*",
"ext-pgsql": "*",
"ext-mongo": "*",
"ext-sqlsrv": "*",
"ext-mssql": "*",
"ext-oci8": "*",
"ext-interbase": "*",
"ext-pdo_pgsql": "*",
"ext-pdo_dblib": "*",
"ext-pdo_sqlite": "*",
"ext-pdo_oci": "*"
},
"require-dev": {
"ext-xdebug": "*"
},
"scripts": { "scripts": {
"compile": "php compile.php" "compile": "php compile.php"
}, },