PHPackages                             djvue/wp-admin-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Admin Panels](/categories/admin)
4. /
5. djvue/wp-admin-bundle

ActiveSymfony-bundle[Admin Panels](/categories/admin)

djvue/wp-admin-bundle
=====================

Symfony bundle for wp-admin-bundle package

1.0.36(4y ago)1416MITPHPPHP &gt;=8.0

Since Mar 9Pushed 4y ago1 watchersCompare

[ Source](https://github.com/djvue/wp-admin-bundle)[ Packagist](https://packagist.org/packages/djvue/wp-admin-bundle)[ RSS](/packages/djvue-wp-admin-bundle/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (28)Versions (50)Used By (0)

Symfony Wordpress Admin Bundle
==============================

[](#symfony-wordpress-admin-bundle)

Gettings started
----------------

[](#gettings-started)

1. Add in `composer.json`:

```
{
    "repositories": [
        {
            "type": "composer",
            "url": "https://wpackagist.org",
            "only": [
                "wpackagist-plugin/*",
                "wpackagist-theme/*"
            ]
        },
        {
            "type": "composer",
            "url": "https://pivvenit.github.io/acf-composer-bridge/composer/v3/wordpress-plugin/"
        }
    ],
    "require": {
        "...": "...",
        "johnpbloch/wordpress": "^5.6",
        "advanced-custom-fields/advanced-custom-fields-pro": "5.9.5",
        "wpackagist-plugin/duplicate-post": "*",
        "wpackagist-plugin/post-types-order": "*",
        "wpackagist-plugin/regenerate-thumbnails": "*",
        "wpackagist-plugin/svg-support": "*",
        "wpackagist-plugin/taxonomy-terms-order": "*",
        "wpackagist-plugin/wordpress-seo": "*"
    },
    "scripts": {
        "auto-scripts": {
            "...": "...",
            "wp:clear-installation": "symfony-cmd"
        },
        "post-install-cmd": [
            "...",
            "@auto-scripts"
        ],
        "post-update-cmd": [
            "...",
            "@auto-scripts"
        ]
    },
    "extra": {
        "...": "...",
        "wordpress-install-dir": "public/wp",
        "installer-paths": {
            "public/content/plugins/{$name}/": [
                "vendor:wpackagist-plugin",
                "type:wordpress-plugin"
            ]
        }
    }
}
```

2. Add in symfony routes config:

```
wp-admin:
    resource: "@WpAdminBundle/Resources/config/routes.yaml"
```

3. Setup nginx config:

```
server {
    listen 80;
    server_name _;

    set $php_upstream unix:/var/run/php/php-fpm.sock;
    set $root /var/www/public;

    # uncomment if use local files uploads (not S3 for example)
    #location /content/uploads {
    #    expires max;
    #    root $root;
    #    try_files $uri 404;
    #}

    # symfony bundles static
    location /bundles {
        root $root;
        try_files $uri 404;
    }

    # symfony routes
    location ~ ^/(api/.+|wp/wp-admin/?|robots\.txt|sitemap(-\d+)?\.xml|wp-json/.+)$ {
        fastcgi_pass $php_upstream;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param PHP_SELF /var/www/public/index.php;
        fastcgi_param SCRIPT_NAME /var/www/public/index.php;
        fastcgi_param SCRIPT_FILENAME /var/www/public/index.php;
    }

    # admin static
    location ~ ^/(content/plugins|wp/wp-admin/css|wp/wp-admin/js|wp/wp-admin/images|wp/wp-includes/css|wp/wp-includes/js|wp/wp-includes/images|wp/wp-includes/fonts) {
        expires 14d;
        root $root;
        try_files $uri 404;
    }

    location ~ ^/(wp/wp-login\.php|wp/wp-admin/.+\.php)$ {
        root $root;
        fastcgi_pass $php_upstream;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        #fastcgi_param SCRIPT_FILENAME /var/www/public/index.php;
    }

    location / {
        # ...
    }
}

```

Local developing
----------------

[](#local-developing)

1. Example of local docker-compose.yaml file

```
version: "3.8"

volumes:
  php_socket:
  mysql_data:

services:
  php-fpm:
    image: ggpa/php:8.1.2-wp-debug
    restart: unless-stopped
    environment:
      PHP_IDE_CONFIG: $PHP_IDE_CONFIG
      XDEBUG_MODE: debug
      #XDEBUG_MODE: debug,profile
      #XDEBUG_CONFIG: output_dir=/var/www/var/log
      ACF_PRO_KEY: $ACF_PRO_KEY
    volumes:
      - ./:/var/www
      - php_socket:/var/run/php
      #- ./var/uploads:/var/www/public/content/uploads
      - ./deploy/dev/php-fpm.conf:/usr/local/etc/php-fpm.d/zz-docker.conf
    depends_on:
      - mysql
    extra_hosts:
      - "dockerhost:172.17.0.1"

  nginx:
    image: nginx:alpine
    restart: unless-stopped
    ports:
      - "YOUR_APP_PORT:80"
    volumes:
      - php_socket:/var/run/php
      - ./:/var/www:ro
      #- ./var/uploads:/var/www/public/content/uploads
      - ./deploy/dev/nginx.conf:/etc/nginx/conf.d/default.conf:ro
    depends_on:
      - php-fpm
    extra_hosts:
      - "dockerhost:172.17.0.1"

  mysql:
    image: mysql:8.0
    restart: unless-stopped
    command: --default-authentication-plugin=mysql_native_password --secure-file-priv=NULL --default-time-zone='+03:00' --general_log=0 --performance_schema=0
    environment:
      MYSQL_DATABASE: app
      MYSQL_ALLOW_EMPTY_PASSWORD: 1
    volumes:
      - mysql_data:/var/lib/mysql
    ports:
      - "YOUR_MYSQL_PORT:3306"
```

2. And local php-fpm.conf

```
[global]
daemonize = no
process_control_timeout = 20

[www]
listen = /var/run/php/php-fpm.sock
listen.mode = 0666
ping.path = /ping

access.log = /dev/null

```

3. .env

```
COMPOSE_PROJECT_NAME=YOUR_APP_NAME
PHP_IDE_CONFIG="serverName=YOUR_APP_SERVER"

HOST=http://localhost:YOUR_APP_PORT

DB_HOST=mysql
DB_PORT=3306
DB_NAME=app
DB_USER=root
DB_PASSWORD=
```

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity71

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~7 days

Total

49

Last Release

1540d ago

Major Versions

0.8.12 → 1.0.02021-07-25

### Community

Maintainers

![](https://www.gravatar.com/avatar/65b268c1f6cbc70648ce6e711b52059a34a3abec1b465daf4cbdc3a1af10e55d?d=identicon)[djvue](/maintainers/djvue)

---

Top Contributors

[![djvue](https://avatars.githubusercontent.com/u/43354975?v=4)](https://github.com/djvue "djvue (42 commits)")

###  Code Quality

Static AnalysisPsalm

Type Coverage Yes

### Embed Badge

![Health badge](/badges/djvue-wp-admin-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/djvue-wp-admin-bundle/health.svg)](https://phpackages.com/packages/djvue-wp-admin-bundle)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M648](/packages/sylius-sylius)[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k16.7M309](/packages/easycorp-easyadmin-bundle)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

595.2M386](/packages/shopware-core)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
