PHPackages                             rodmcnew/symfonize-zf - 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. rodmcnew/symfonize-zf

ActiveLibrary

rodmcnew/symfonize-zf
=====================

Allows you to use Symfony 2 bundles in Zend Framework 2 apps

1.2.1(10y ago)112MITPHPPHP &gt;=5.5.0

Since Oct 26Pushed 10y ago1 watchersCompare

[ Source](https://github.com/rodmcnew/symfonize-zf)[ Packagist](https://packagist.org/packages/rodmcnew/symfonize-zf)[ RSS](/packages/rodmcnew-symfonize-zf/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (5)Versions (12)Used By (0)

SymfonizeZF allows you to include Symfony 2 Bundles in your Zend Framework 2 application.

Symfonize provides the following 3 features to ensure the seamless integration of Symfony bundles:

\####Bundle Loader

- Bundle loading configured through application.config.php. This caches DI config and routing for performance.

\####Container Bridge

- A bridge between the SF DI container and the ZF service manager. Requests for ZF-module-defined services from the SF container work. Requests for SF-bundle-defined services from the ZF service manager also work.

\####Routing bridge

- A routing bridge that allows SF-bundle-defined routes to be dispatched to SF controllers. Symfony does not boot for ZF-defined routes.

\####How to install and register Symfony Bundles:

```
// In config/autoload/application.config.php
[
    'modules' => [
        //Add Symfonize modules to the end of your ZF modules list.
        'Reliv\\SymfonizeZF',
        'Reliv\\SymfonizeZFContainerBridge',
    ],
    'symfonize_zf' => [
        /**
         * This is the place to register your own bundles. This is similar to:
         * http://symfony.com/doc/current/cookbook/bundles/installation.html
         */
        'bundles' => [
            new \MyOwnFun\MyOwnFunBundle(),
        ],
        /**
         * These bundles do not load for zend routes. They only load if
         * a Symfony route is detected and Symfony is booted.
         */
        'symfony_only_bundles' => [
            new \Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
            new \Symfony\Bundle\SecurityBundle\SecurityBundle(),
            new \Symfony\Bundle\TwigBundle\TwigBundle(),
            new \Symfony\Bundle\MonologBundle\MonologBundle(),
            new \Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
            new \Symfony\Bundle\AsseticBundle\AsseticBundle(),
            new \Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
            new \Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
        ],
        /**
         * These bundles load only if environment is dev or test.
         * These bundles do not load for zend routes.
         */
        'symfony_only_dev_bundles' => [
            new \Symfony\Bundle\DebugBundle\DebugBundle(),
            new \Symfony\Bundle\WebProfilerBundle\WebProfilerBundle(),
            new \Sensio\Bundle\DistributionBundle\SensioDistributionBundle(),
            new \Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle(),
        ],
        'environment' => $onProd ? 'prod' : 'dev',
        /**
         * Should be true on dev, and false on prod. This disables caching.
         */
        'debug' => !$onProd,
        /**
         * Cache files are written here
         */
        'cache_dir' => __DIR__ . '/../data/SymfonizeZf',
        /**
         * Log files go here
         */
        'log_dir' => __DIR__ . '/../data/SymfonizeZf/log',
        /**
         * This can be changed if you want to control your own Symfony root
         */
        'symfony_root_dir' => __DIR__ . '/../vendor/reliv/symfonize-zf/SymfonyRoot'
    ]
]
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity65

Established project with proven stability

 Bus Factor1

Top contributor holds 91.7% 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

Recently: every ~16 days

Total

11

Last Release

3784d ago

Major Versions

0.3.2 → 1.0.02015-10-29

### Community

Maintainers

![](https://www.gravatar.com/avatar/66407d5e6ca91b8348405c2d8e406102dfd062bf5d0dce19246cd5ee025fab20?d=identicon)[rodmcnew](/maintainers/rodmcnew)

---

Top Contributors

[![rodmcnew](https://avatars.githubusercontent.com/u/1828506?v=4)](https://github.com/rodmcnew "rodmcnew (44 commits)")[![innaDavis](https://avatars.githubusercontent.com/u/6775475?v=4)](https://github.com/innaDavis "innaDavis (2 commits)")[![jerv13](https://avatars.githubusercontent.com/u/853222?v=4)](https://github.com/jerv13 "jerv13 (2 commits)")

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/rodmcnew-symfonize-zf/health.svg)

```
[![Health](https://phpackages.com/badges/rodmcnew-symfonize-zf/health.svg)](https://phpackages.com/packages/rodmcnew-symfonize-zf)
```

###  Alternatives

[cedriclombardot/admingenerator-generator-bundle

Admingenerator for Symfony2 based on YAML configuration and Twig templating

36485.6k4](/packages/cedriclombardot-admingenerator-generator-bundle)[voryx/restgeneratorbundle

REST API Generator for Symfony 2

178141.7k1](/packages/voryx-restgeneratorbundle)[webonaute/doctrine-fixtures-generator-bundle

Generate Fixture from your existing data in your database. You can specify the Entity name and the IDs you want to import in your fixture.

67184.1k](/packages/webonaute-doctrine-fixtures-generator-bundle)[jordillonch/crud-generator

This bundle generates a nice CRUD

8351.5k](/packages/jordillonch-crud-generator)[petkopara/crud-generator-bundle

Symfony3 bundle for CRUD generation with pagination, filtering, sorting, page size, bulk delete and bootstrap3 markup. This Generator supports Doctrine association mapping.

7257.9k](/packages/petkopara-crud-generator-bundle)[ismaambrosi/generator-bundle

Generates Symfony2 documents, forms and CRUD

2692.9k](/packages/ismaambrosi-generator-bundle)

PHPackages © 2026

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