dev-master
9999999-devRodchyn AMFBundle
The Requires
- symfony/framework-bundle 2.1.*
- zendframework/zend-amf 2.0.*
by Thomas Adam
amf
Rodchyn AMFBundle
========, (*1)
This bundle allows you to use AMF with the Symfony2 Framework. Main features include:, (*2)
Checkout a copy of the code::, (*3)
git submodule add https://github.com/tecbot/AMFBundle.git src/Tecbot/AMFBundle
Then register the bundle with your kernel:, (*4)
// in AppKernel::registerBundles() $bundles = array( // ... new JMS\AMFBundle\TecbotAMFBundle(), // ... );
Make sure that you also register the namespaces with the autoloader:, (*5)
// app/autoload.php $loader->registerNamespaces(array( // ... 'Tecbot' => __DIR__.'/../vendor/bundles', // ... ));
Note: The serializer needs the [JMSSerializerBundle][1]., (*6)
Below is the default configuration, you don't need to change it unless it doesn't suit your needs:, (*7)
tecbot_amf: use_serialization: false
Configuring services and class mappings, (*8)
tecbot_amf: services: # Services FooService: FooBarBundle:Foo # Map FooService (Actionscript alias) to Foo\BarBundle\Amf\Foo class mapping: # Class mapping. Map FooClassVO (Actionscript alias) to Foo\BarBundle\VO\FooClassVO FooClassVO: Foo\BarBundle\VO\FooClassVO
Add routing to the gateway controller, (*9)
# path is "/gateway" _tecbot_amf: resource: "@TecbotAMFBundle/Resources/config/routing.yml" # or when you want a another path amf: pattern: /amf defaults: { _controller: tecbot_amf.controller.gateway:gatewayAction }
Rodchyn AMFBundle
amf