Files
adminer/composer.json
2025-09-10 00:17:44 +02:00

44 lines
1.0 KiB
JSON

{
"name": "vrana/adminer",
"description": "Database management in a single PHP file.",
"homepage": "https://www.adminer.org/",
"keywords": [
"database"
],
"support": {
"issues": "https://github.com/vrana/adminer/issues",
"forum": "https://github.com/vrana/adminer/discussions",
"source": "https://github.com/vrana/adminer/"
},
"authors": [
{
"name": "Jakub Vrána",
"homepage": "https://www.vrana.cz/"
}
],
"autoload": {
"exclude-from-classmap": [
"adminer/drivers/",
"plugins/drivers/"
],
"classmap": [
"plugins/"
]
},
"license": [
"Apache-2.0",
"GPL-2.0-only"
],
"require": {
"php": ">=7.4"
},
"scripts": {
"check": [
"phpcs",
"phpstan analyse -c phpstan.neon"
],
"compile": "@php compile.php",
"clean": "rm -f adminer*.php editor*.php"
}
}