Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
What do I get from the full stack framework?
Search
Richard Miller
June 11, 2012
Programming
1.6k
1
Share
What do I get from the full stack framework?
Richard Miller
June 11, 2012
More Decks by Richard Miller
See All by Richard Miller
Introduction to Symfony2 - DrupalCamp London 2014
richardmiller
0
320
Avoiding the mud
richardmiller
22
11k
better searching with elasticsearch - PHPConfPL
richardmiller
2
530
better searching with elasticsearch
richardmiller
2
320
Avoiding the mud - Symfony Live London
richardmiller
7
790
Advanced Service Container Utilization
richardmiller
4
1.3k
Dependency Injection and the Symfony2 Service Container
richardmiller
9
13k
Other Decks in Programming
See All in Programming
実用!Hono RPC2026
yodaka
2
310
Kingdom of the Machine
yui_knk
2
1.5k
ハーネスエンジニアリングにどう向き合うか 〜ルールファイルを超えて開発プロセスを設計する〜 / How to approach harness engineering
rkaga
28
20k
t *testing.T は どこからやってくるの?
otakakot
1
930
20260514_its_the_context_window_stupid.pdf
heita
0
920
Programming with a DJ Controller — not vibe coding
m_seki
3
820
Structured Concurrency, Scoped Values and Joiners in the JDK 25 26 27
josepaumard
1
150
JCON - Create Agentic AI Apps, The Easy Way!
kdubois
1
110
AI時代だからこそ「Bloc」を採用する価値があるのかもしれない
takuroabe
0
160
AI時代のエンジニアリングの原則 / Engineering Principles in the AI Era
haru860
0
1.2k
cloudnative conference 2026 flyle
azihsoyn
0
170
リセットCSSを1行消したらアクセシビリティが向上した話
pvcresin
4
500
Featured
See All Featured
We Are The Robots
honzajavorek
0
230
Marketing to machines
jonoalderson
1
5.2k
Done Done
chrislema
186
16k
Ethics towards AI in product and experience design
skipperchong
2
270
Digital Projects Gone Horribly Wrong (And the UX Pros Who Still Save the Day) - Dean Schuster
uxyall
0
1.3k
Ecommerce SEO: The Keys for Success Now & Beyond - #SERPConf2024
aleyda
1
2k
How to train your dragon (web standard)
notwaldorf
97
6.6k
A designer walks into a library…
pauljervisheath
211
24k
Getting science done with accelerated Python computing platforms
jacobtomlinson
2
200
svc-hook: hooking system calls on ARM64 by binary rewriting
retrage
2
240
Leveraging LLMs for student feedback in introductory data science courses - posit::conf(2025)
minecr
1
250
Navigating the moral maze — ethical principles for Al-driven product design
skipperchong
2
360
Transcript
What do I get from the full stack framework? By
Richard Miller (@mr_r_miller)
We're developers who want to get stuff done and enjoy
it
We often have to write a lot of boiler plate/infrastructure
code
Remove barriers between you and the interesting code
You want to write the application not wire up the
parts
You get a powerful set of components for web tasks
Routing HTTP Foundation Templating Form Security HTTP Kernel Clas Load
They are already wired up in the framework
You don't want to write the repetitive code
You can generate the bundle
Bundles give you a common directory structure
You can generate the CRUD actions, views and forms
You get to concentrate on what the application does
You want to write quick config not slow boiler plate
code
Assetic comes with the standard distribution Monolog Swiftmailer Assetic Twig
Setting up assets and filters with Assetic alone
Creating a controller action to serve the assets
You can let the bundle do that for you
Replace the boiler plate code with config
Twig extension makes front end integration easy
You get to code other things because config is quick
to write
What do the bundles give you? Number of files Lines
of code PHP 756 10,887 XML 42 1637
This is similar for other components
Also for third party libraries
Everyone is happy with the quick progress made
You want to learn the good bits of new technologies
and libraries
You want to use elasticsearch
You could use Elastica directly
You could index data directly with Elastica
You can let 3rd party bundles do that for you
The bundle configures it for you
The indexing is already done in bundle
You get to work in terms you already know
The index is available as a service you are familiar
with
You get this for lots of libraries/bundles
You can spend time on adding functionality to your application
Remove barriers between you and the interesting code
Questions? @mr_r_miller richardmiller.co.uk