mainlycode / zf1wrapperbundle
Symfony 2 bundle for wrapping a Zend Framework 1 legacy application
Installs: 16 293
Dependents: 1
Suggesters: 0
Security: 0
Stars: 10
Watchers: 3
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.3
Requires (Dev)
- zendframework/zendframework1: 1.12.*@dev
This package is auto-updated.
Last update: 2022-02-01 12:25:04 UTC
README
Introduction
The Zf1WrapperBundle is a Symfony 2 bundle for wrapping a Zend Framework 1 application. It can be used to refactor parts of your legacy code to Symfony 2.
Installation
Composer
Add the following to your composer.json:
"require": {
"mainlycode/zf1wrapperbundle": "dev-master"
}
Configuration
1. config.yml
You need to configure is the location of your ZF1 bootstrap file (e.g. index.php). Add the following to your config.yml:
parameters:
#Zf1WrapperBundle
zf1wrapper_bootstrap_path: ../web/index.php
2. routing.yml
The bundle uses a catch-all route which you have to add to your routing.yml:
zf1_wrapper:
resource: "@Zf1WrapperBundle/Resources/config/routing.yml"
prefix: /
3. AppKernel.php
Add the following to your app/AppKernel.php to enable the bundle
public function registerBundles()
{
return array(
// ...
new MainlyCode\Zf1WrapperBundle\Zf1WrapperBundle(),
);
}