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
1.6k
What do I get from the full stack framework?
Richard Miller
June 11, 2012
Tweet
Share
More Decks by Richard Miller
See All by Richard Miller
Introduction to Symfony2 - DrupalCamp London 2014
richardmiller
0
280
Avoiding the mud
richardmiller
22
11k
better searching with elasticsearch - PHPConfPL
richardmiller
2
510
better searching with elasticsearch
richardmiller
2
290
Avoiding the mud - Symfony Live London
richardmiller
7
770
Advanced Service Container Utilization
richardmiller
4
1.2k
Dependency Injection and the Symfony2 Service Container
richardmiller
9
13k
Other Decks in Programming
See All in Programming
乱雑なコードの整理から学ぶ設計の初歩
masuda220
PRO
32
15k
DartASTとその活用
sotaatos
2
150
Combinatorial Interview Problems with Backtracking Solutions - From Imperative Procedural Programming to Declarative Functional Programming - Part 1
philipschwarz
PRO
0
110
AIと協働し、イベントソーシングとアクターモデルで作る後悔しないアーキテクチャ Regret-Free Architecture with AI, Event Sourcing, and Actors
tomohisa
2
9k
社内オペレーション改善のためのTypeScript / TSKaigi Hokuriku 2025
dachi023
1
130
予防に勝る防御なし(2025年版) - 堅牢なコードを導く様々な設計のヒント / Growing Reliable Code PHP Conference Fukuoka 2025
twada
PRO
41
13k
CloudNative Days Winter 2025: 一週間で作る低レイヤコンテナランタイム
ternbusty
7
1.7k
目的で駆動する、AI時代のアーキテクチャ設計 / purpose-driven-architecture
minodriven
11
3.4k
AI駆動開発ライフサイクル(AI-DLC)のホワイトペーパーを解説
swxhariu5
0
1.4k
競馬で学ぶ機械学習の基本と実践 / Machine Learning with Horse Racing
shoheimitani
14
13k
Agentに至る道 〜なぜLLMは自動でコードを書けるようになったのか〜
mackee
5
2k
モビリティSaaSにおけるデータ利活用の発展
nealle
1
620
Featured
See All Featured
Intergalactic Javascript Robots from Outer Space
tanoku
273
27k
Being A Developer After 40
akosma
91
590k
A better future with KSS
kneath
239
18k
How STYLIGHT went responsive
nonsquared
100
5.9k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
140
34k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
234
17k
Site-Speed That Sticks
csswizardry
13
970
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
36
6.1k
Side Projects
sachag
455
43k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
52
5.7k
The Hidden Cost of Media on the Web [PixelPalooza 2025]
tammyeverts
1
52
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