PHPackages                             opifer/cms-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. [Framework](/categories/framework)
4. /
5. opifer/cms-bundle

AbandonedArchivedSymfony-bundle[Framework](/categories/framework)

opifer/cms-bundle
=================

Opifer CMS

0.1.1(10y ago)42794PHPPHP &gt;=5.4

Since Jun 12Pushed 10y ago1 watchersCompare

[ Source](https://github.com/Opifer/CmsBundle)[ Packagist](https://packagist.org/packages/opifer/cms-bundle)[ RSS](/packages/opifer-cms-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (46)Versions (4)Used By (0)

[![Build Status](https://camo.githubusercontent.com/43a550de67e46adbdb8d769c8500d25735a253bdf2b22a836d080e5ad2eae52d/68747470733a2f2f7472617669732d63692e6f72672f4f70696665722f436d7342756e646c652e737667)](https://travis-ci.org/Opifer/CmsBundle)

Opifer CmsBundle
================

[](#opifer-cmsbundle)

Installation
------------

[](#installation)

Add OpiferCmsBundle to your composer.json:

```
$ composer require opifer/cms-bundle "@dev"

```

To avoid enabling all required bundles, extend `Opifer\CmsBundle\Kernel\Kernel` in `app/AppKernel.php`:

```
use Opifer\CmsBundle\Kernel\Kernel;

class AppKernel extends Kernel
{
    /**
     * Register bundles
     *
     * @return array
     */
    public function registerBundles()
    {
        $bundles = [
            // Add the bundles for your own application here
            new AppBundle\AppBundle(),
        ];

        // The parent bundles array must be passed as the first parameter, cause
        // our CmsBundle holds all required config.
        return array_merge(parent::registerBundles(), $bundles);
    }
}
```

Add the assets installer to your composers's post-install &amp; post-update commands, before the `installAssets` command of the `DistributionBundle`:

```
...
"scripts": {
    "post-install-cmd": [
        ...
        "Opifer\\CmsBundle\\Composer\\ScriptHandler::installAssets",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
    ],
    "post-update-cmd": [
        ...
        "Opifer\\CmsBundle\\Composer\\ScriptHandler::installAssets",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
    ]
},
...
```

To avoid defining all configuration yourself, import the config files from the CmsBundle:

```
# app/config/config.yml
imports:
    - { resource: parameters.yml }
    - { resource: '@OpiferCmsBundle/Resources/config/security.yml' }
    - { resource: '@OpiferCmsBundle/Resources/config/config.yml' }

# app/config/config_dev/yml
imports:
    - { resource: config.yml }
    - { resource: '@OpiferCmsBundle/Resources/config/config_dev.yml' }

# app/config/config_prod.yml
imports:
    - { resource: config.yml }
    - { resource: '@OpiferCmsBundle/Resources/config/config_prod.yml' }
```

Same goes for the routing:

```
# app/config/routing.yml
opifer_cms:
    resource: '@OpiferCmsBundle/Resources/config/routing/routing.yml'
```

Update your database schema:

```
$ php app/console doctrine:schema:create

```

And create a user account:

```
$ php app/console fos:user:create --super-admin

```

Now log into the admin panel at `http://localhost/app_dev.php/admin`.

Documentation
-------------

[](#documentation)

- [Configuration Reference](Resources/doc/configuration-reference.md)

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 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 ~111 days

Total

3

Last Release

3772d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6866d9d11ab5b172391449a5751e5b7cc8840792a31d892e225e22bcd779d5ce?d=identicon)[rvanlaarhoven](/maintainers/rvanlaarhoven)

---

Top Contributors

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

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/opifer-cms-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/opifer-cms-bundle/health.svg)](https://phpackages.com/packages/opifer-cms-bundle)
```

###  Alternatives

[sylius/sylius

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

8.4k5.6M651](/packages/sylius-sylius)[open-dxp/opendxp

Content &amp; Product Management Framework (CMS/PIM)

7310.3k29](/packages/open-dxp-opendxp)

PHPackages © 2026

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