What do I get from the full stackframework?By Richard Miller (@mr_r_miller)
View Slide
We're developers who want toget stuff done and enjoy it
We often have to write a lot ofboiler plate/infrastructure code
Remove barriers between youand the interesting code
You want to write the application notwire up the parts
You get a powerful set ofcomponents for web tasksRoutingHTTPFoundationTemplatingFormSecurityHTTPKernelClasLoad
They are already wired upin the framework
You don't want to write the repetitive code
You can generate the bundle
Bundles give you a commondirectory structure
You can generate the CRUDactions, views and forms
You get to concentrate on what theapplication does
You want to write quick config not slowboiler plate code
Assetic comes with thestandard distributionMonologSwiftmailerAsseticTwig
Setting up assets and filterswith Assetic alone
Creating a controller action toserve the assets
You can let the bundle do that for you
Replace the boiler plate code with config
Twig extension makes front endintegration easy
You get to code other things becauseconfig is quick to write
What do the bundles give you?Number of files Lines of codePHP 756 10,887XML 42 1637
This is similar for other components
Also for third party libraries
Everyone is happy with thequick progress made
You want to learn the good bits of newtechnologies and libraries
You want to use elasticsearch
You could use Elastica directly
You could index data directly with Elastica
You can let 3rd party bundlesdo that for you
The bundle configures it for you
The indexing is already done in bundle
You get to work in termsyou already know
The index is available as aservice you are familiar with
You get this for lots of libraries/bundles
You can spend time on addingfunctionality to your application
Questions?@mr_r_millerrichardmiller.co.uk