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.5k
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
230
Avoiding the mud
richardmiller
22
11k
better searching with elasticsearch - PHPConfPL
richardmiller
2
500
better searching with elasticsearch
richardmiller
2
270
Avoiding the mud - Symfony Live London
richardmiller
7
740
Advanced Service Container Utilization
richardmiller
4
1.1k
Dependency Injection and the Symfony2 Service Container
richardmiller
9
13k
Other Decks in Programming
See All in Programming
chibiccをCILに移植した結果 (NGK2025S版)
kekyo
PRO
0
210
バックエンドのためのアプリ内課金入門 (サブスク編)
qnighy
8
1.7k
最近のVS Codeで気になるニュース 2025/01
74th
1
250
SwiftUIで単方向アーキテクチャを導入して得られた成果
takuyaosawa
0
260
DevinとCursorから学ぶAIエージェントメモリーの設計とMoatの考え方
itarutomy
1
640
CNCF Project の作者が考えている OSS の運営
utam0k
5
690
DROBEの生成AI活用事例 with AWS
ippey
0
130
Lottieアニメーションをカスタマイズしてみた
tahia910
0
120
一休.com のログイン体験を支える技術 〜Web Components x Vue.js 活用事例と最適化について〜
atsumim
0
110
個人アプリを2年ぶりにアプデしたから褒めて / I just updated my personal app, praise me!
lovee
0
340
Java Webフレームワークの現状 / java web framework at burikaigi
kishida
9
2.2k
How mixi2 Uses TiDB for SNS Scalability and Performance
kanmo
29
11k
Featured
See All Featured
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
Embracing the Ebb and Flow
colly
84
4.6k
The Cost Of JavaScript in 2023
addyosmani
47
7.3k
The Language of Interfaces
destraynor
156
24k
Optimising Largest Contentful Paint
csswizardry
34
3.1k
Done Done
chrislema
182
16k
Rails Girls Zürich Keynote
gr2m
94
13k
Making Projects Easy
brettharned
116
6k
The World Runs on Bad Software
bkeepers
PRO
67
11k
Build your cross-platform service in a week with App Engine
jlugia
229
18k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
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