https://github.com/teamneusta/pimcore-database-admin-bundle
Database administration inside the Pimcore admin backend.
https://github.com/teamneusta/pimcore-database-admin-bundle
pimcore pimcore-11 pimcore-bundle
Last synced: 10 months ago
JSON representation
Database administration inside the Pimcore admin backend.
- Host: GitHub
- URL: https://github.com/teamneusta/pimcore-database-admin-bundle
- Owner: teamneusta
- License: gpl-3.0
- Created: 2025-08-06T14:27:26.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-08-06T15:52:57.000Z (10 months ago)
- Last Synced: 2025-08-06T17:49:35.584Z (10 months ago)
- Topics: pimcore, pimcore-11, pimcore-bundle
- Language: PHP
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pimcore Database Admin Bundle
This bundle integrates [Adminer](https://www.adminer.org/) into the Pimcore 11 admin backend
(just like it was until Pimcore 10).
## Installation
1. **Require the bundle**
```shell
composer require teamneusta/pimcore-database-admin-bundle
```
2. **Enable the bundle**
Add the Bundle to your `config/bundles.php`:
```php
Neusta\Pimcore\DatabaseAdminBundle\NeustaPimcoreDatabaseAdminBundle::class => ['all' => true],
```
3. **Update your nginx config**
```diff
# Some Admin Modules need this:
# Server Info, Opcache
-location ~* ^/admin/external {
+location ~* ^/admin/(adminer|external) {
rewrite .* /index.php$is_args$args last;
}
```
## Usage
You will find the database admin in the main menu under »Tools« → »System Info & Tools« → »Database Administration«.
## Contribution
Feel free to open issues for any bug, feature request, or other ideas.
Please remember to create an issue before creating large pull requests.
### Local Development
To develop on your local machine, the vendor dependencies are required.
```shell
bin/composer install
```
We use composer scripts for our main quality tools. They can be executed via the `bin/composer` file as well.
```shell
bin/composer cs:fix
bin/composer phpstan
```