{"id":19909691,"url":"https://github.com/bearsampp/login-servers-enhanced","last_synced_at":"2025-10-15T12:34:20.958Z","repository":{"id":40313158,"uuid":"432288918","full_name":"Bearsampp/login-servers-enhanced","owner":"Bearsampp","description":"Fork of crazy-max fork of the official login-servers Adminer plugin with enhancements ","archived":false,"fork":false,"pushed_at":"2025-04-23T14:33:16.000Z","size":2455,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-23T15:43:01.059Z","etag":null,"topics":["adminer","adminer-plugin","hacktoberfest","php"],"latest_commit_sha":null,"homepage":"https://bearsampp.com","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Bearsampp.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":".github/SUPPORT.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"N6REJ","custom":"https://www.paypal.me/BearLeeAble"}},"created_at":"2021-11-26T20:03:23.000Z","updated_at":"2025-04-23T14:33:20.000Z","dependencies_parsed_at":"2024-04-30T04:55:36.398Z","dependency_job_id":"4c3aa797-4197-4ae6-8d97-698bf0b22238","html_url":"https://github.com/Bearsampp/login-servers-enhanced","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/Bearsampp/login-servers-enhanced","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bearsampp%2Flogin-servers-enhanced","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bearsampp%2Flogin-servers-enhanced/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bearsampp%2Flogin-servers-enhanced/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bearsampp%2Flogin-servers-enhanced/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Bearsampp","download_url":"https://codeload.github.com/Bearsampp/login-servers-enhanced/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bearsampp%2Flogin-servers-enhanced/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259695307,"owners_count":22897513,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["adminer","adminer-plugin","hacktoberfest","php"],"created_at":"2024-11-12T21:16:21.876Z","updated_at":"2025-10-15T12:34:15.923Z","avatar_url":"https://github.com/Bearsampp.png","language":"PHP","funding_links":["https://github.com/sponsors/N6REJ","https://www.paypal.me/BearLeeAble","https://github.com/sponsors/crazy-max","https://www.paypal.me/crazyws"],"categories":[],"sub_categories":[],"readme":"[![Latest Stable Version](https://img.shields.io/packagist/v/crazy-max/login-servers-enhanced.svg?style=flat-square)](https://packagist.org/packages/crazy-max/login-servers-enhanced)\n[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%205.6.24-8892BF.svg?style=flat-square)](https://php.net/)\n\n# Adminer login-servers-enhanced\n\nThis plugin display a constant list of servers in login form.\u003cbr /\u003e\nIt's a fork of the official plugin [login-servers](https://raw.github.com/vrana/adminer/master/plugins/login-servers.php) for [Adminer](https://www.adminer.org/) with enhancements.\u003cbr /\u003e\nWas created for the [Bearsampp](https://github.com/Bearsampp) project.\n\n## Features\n\n* Ability to select a server with different driver.\n\n## Installation\n\n### Adminer\n\nCopy `plugins/login-servers-enhanced.php` in the plugins folder.\n\n### Composer\n\n```bash\ncomposer require crazy-max/login-servers-enhanced\n```\n\nAnd download the code:\n\n```bash\ncomposer install # or update\n```\n\n## Getting started\n\nFollow the instructions on the [official plugins page](https://www.adminer.org/en/plugins/).\u003cbr /\u003e\nThen just add `new AdminerLoginServersEnhanced` to the `$plugins` array :\n\n```php\nfunction adminer_object() {\n    // required to run any plugin\n    include_once \"./plugins/plugin.php\";\n    \n    // autoloader\n    foreach (glob(\"plugins/*.php\") as $filename) {\n        include_once \"./$filename\";\n    }\n    \n    $plugins = array(\n        new AdminerLoginServersEnhanced(\n            array(\n                new AdminerLoginServerEnhanced('127.0.0.1:3306', 'MySQL port 3306', 'server'),\n                new AdminerLoginServerEnhanced('127.0.0.1:3307', 'MariaDB port 3307', 'server'),\n                new AdminerLoginServerEnhanced('127.0.0.1:5432', 'PostgreSQL port 5432', 'pgsql')\n            )\n        )\n    );\n    \n    /* It is possible to combine customization and plugins:\n    class AdminerCustomization extends AdminerPlugin {\n    }\n    return new AdminerCustomization($plugins);\n    */\n    \n    return new AdminerPlugin($plugins);\n}\n\n// include original Adminer or Adminer Editor\ninclude \"./adminer.php\";\n```\n\n## How can I help?\n\nAll kinds of contributions are welcome :raised_hands:! The most basic way to show your support is to star :star2:\nthe project, or to raise issues :speech_balloon: You can also support this project by\n[**becoming a sponsor on GitHub**](https://github.com/sponsors/crazy-max) :clap: or by making a\n[Paypal donation](https://www.paypal.me/crazyws) to ensure this journey continues indefinitely! :rocket:\n\nThanks again for your support, it is much appreciated! :pray:\n\n## License\n\nApache-2.0. See `LICENSE` for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbearsampp%2Flogin-servers-enhanced","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbearsampp%2Flogin-servers-enhanced","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbearsampp%2Flogin-servers-enhanced/lists"}