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
【PHP】破壊的バージョンアップと戦った話〜決断と説得
satoshi256kbyte
0
120
TokyoR116_BeginnersSession1_環境構築
kotatyamtema
0
110
お前もAI鬼にならないか?👹Bolt & Cursor & Supabase & Vercelで人間をやめるぞ、ジョジョー!👺
taishiyade
5
3.8k
2024年のWebフロントエンドのふりかえりと2025年
sakito
1
230
JavaScriptツール群「UnJS」を5分で一気に駆け巡る!
k1tikurisu
10
1.8k
Bedrock Agentsレスポンス解析によるAgentのOps
licux
2
720
第3回関東Kaggler会_AtCoderはKaggleの役に立つ
chettub
3
890
データの整合性を保つ非同期処理アーキテクチャパターン / Async Architecture Patterns
mokuo
41
15k
AHC041解説
terryu16
0
590
Honoをフロントエンドで使う 3つのやり方
yusukebe
5
2.2k
[Fin-JAWS 第38回 ~re:Invent 2024 金融re:Cap~]FaultInjectionServiceアップデート@pre:Invent2024
shintaro_fukatsu
0
400
テストをしないQAエンジニアは何をしているか?
nealle
0
130
Featured
See All Featured
Producing Creativity
orderedlist
PRO
343
39k
Gamification - CAS2011
davidbonilla
80
5.1k
Statistics for Hackers
jakevdp
797
220k
The Invisible Side of Design
smashingmag
299
50k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
251
21k
Rebuilding a faster, lazier Slack
samanthasiow
79
8.8k
Mobile First: as difficult as doing things right
swwweet
223
9.3k
Why Our Code Smells
bkeepers
PRO
335
57k
How to train your dragon (web standard)
notwaldorf
90
5.8k
It's Worth the Effort
3n
184
28k
Product Roadmaps are Hard
iamctodd
PRO
50
11k
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
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