Files
adminer/composer.json

72 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2014-10-17 02:48:40 -04:00
{
2024-11-01 21:35:29 +01:00
"name": "pematon/adminer",
2014-10-17 02:48:40 -04:00
"description": "Database management in a single PHP file.",
2024-11-01 21:35:29 +01:00
"homepage": "https://github.com/pematon/adminer",
2014-10-17 02:48:40 -04:00
"keywords": [
"database"
],
"support": {
2024-11-01 21:35:29 +01:00
"issues": "https://github.com/pematon/adminer/issues",
"forum": "https://github.com/pematon/adminer/discussions",
"source": "https://github.com/pematon/adminer"
2014-10-17 02:48:40 -04:00
},
"authors": [
{
"name": "Jakub Vrána",
2017-02-27 13:43:33 +01:00
"homepage": "https://www.vrana.cz/"
2024-11-01 21:35:29 +01:00
},
{
"name": "Peter Knut"
2014-10-17 02:48:40 -04:00
}
],
"autoload": {
"classmap": [
"plugins/"
]
},
"license": [
"Apache-2.0",
2018-01-23 12:21:42 +01:00
"GPL-2.0-only"
2014-10-17 02:48:40 -04:00
],
"require": {
2025-01-14 00:06:54 +01:00
"php": "5.6 - 8.4",
"ext-pdo": "*",
"ext-json": "*",
2024-10-23 13:57:54 +02:00
"vrana/jush": "2.0.*",
"vrana/jsshrink": "@dev"
},
"suggest": {
"ext-zlib": "*",
"ext-suhosin": "*",
"ext-mysqli": "*",
"ext-mysql": "*",
"ext-pgsql": "*",
"ext-mongo": "*",
2024-11-10 00:14:21 +01:00
"ext-mongodb": "*",
"ext-sqlsrv": "*",
"ext-mssql": "*",
"ext-oci8": "*",
"ext-interbase": "*",
"ext-pdo_pgsql": "*",
"ext-pdo_dblib": "*",
"ext-pdo_sqlite": "*",
"ext-pdo_oci": "*"
},
"require-dev": {
"ext-xdebug": "*"
},
2014-10-17 02:48:40 -04:00
"scripts": {
"compile": "php compile.php"
},
"repositories": [
{
"type": "vcs",
2024-10-23 13:57:54 +02:00
"url": "https://github.com/pematon/jush.git"
},
{
"type": "vcs",
"url": "https://github.com/vrana/jsshrink.git"
}
]
2014-10-17 02:48:40 -04:00
}