Files
adminer/composer.json

44 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2014-10-17 02:48:40 -04:00
{
"name": "vrana/adminer",
"description": "Database management in a single PHP file.",
2015-09-08 09:23:25 -07:00
"homepage": "https://www.adminer.org/",
2014-10-17 02:48:40 -04:00
"keywords": [
"database"
],
"support": {
2025-03-07 19:39:28 +01:00
"issues": "https://github.com/vrana/adminer/issues",
"forum": "https://github.com/vrana/adminer/discussions",
2014-10-17 02:48:40 -04:00
"source": "https://github.com/vrana/adminer/"
},
"authors": [
{
"name": "Jakub Vrána",
2017-02-27 13:43:33 +01:00
"homepage": "https://www.vrana.cz/"
2014-10-17 02:48:40 -04:00
}
],
"autoload": {
"exclude-from-classmap": [
"adminer/drivers/",
"plugins/drivers/"
],
2014-10-17 02:48:40 -04:00
"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-03-28 18:13:58 +01:00
"php": ">=7.4"
},
2014-10-17 02:48:40 -04:00
"scripts": {
2025-09-09 09:58:59 +02:00
"check": [
"phpcs",
"phpstan analyse -c phpstan.neon"
],
"compile": "@php compile.php",
"clean": "rm -f adminer*.php editor*.php"
2014-10-17 02:48:40 -04:00
}
}