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
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
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
310
Avoiding the mud
richardmiller
22
11k
better searching with elasticsearch - PHPConfPL
richardmiller
2
520
better searching with elasticsearch
richardmiller
2
300
Avoiding the mud - Symfony Live London
richardmiller
7
780
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
Agentic AI: Evolution oder Revolution
mobilelarson
PRO
0
190
仕様漏れ実装漏れをなくすトレーサビリティAI基盤のご紹介
orgachem
PRO
6
2.3k
maplibre-gl-layers - 地図に移動体たくさん表示したい
kekyo
PRO
0
300
new(1.26) ← これすき / kamakura.go #8
utgwkk
0
2.5k
How to stabilize UI tests using XCTest
akkeylab
0
130
車輪の再発明をしよう!PHP で実装して学ぶ、Web サーバーの仕組みと HTTP の正体
h1r0
0
130
AIに任せる範囲を安全に広げるためにやっていること
fukucheee
0
150
RubyとGoでゼロから作る証券システム: 高信頼性が求められるシステムのコードの外側にある設計と運用のリアル
free_world21
0
310
CSC307 Lecture 14
javiergs
PRO
0
480
Fundamentals of Software Engineering In the Age of AI
therealdanvega
2
260
AI Assistants for Your Angular Solutions
manfredsteyer
PRO
0
150
ふつうのRubyist、ちいさなデバイス、大きな一年 / Ordinary Rubyists, Tiny Devices, Big Year
chobishiba
1
480
Featured
See All Featured
Navigating Weather and Climate Data
rabernat
0
140
The Spectacular Lies of Maps
axbom
PRO
1
630
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.4k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
47
8k
Reflections from 52 weeks, 52 projects
jeffersonlam
356
21k
Unsuck your backbone
ammeep
672
58k
Design in an AI World
tapps
0
170
Building the Perfect Custom Keyboard
takai
2
710
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.6k
Joys of Absence: A Defence of Solitary Play
codingconduct
1
310
The Hidden Cost of Media on the Web [PixelPalooza 2025]
tammyeverts
2
250
Exploring anti-patterns in Rails
aemeredith
2
290
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