Written by Michael Dowling's blog
/ Original link
on Jul. 2, 2014
There’s been a lot of talk lately about the PSR HTTP message proposal, PSR-7. The purpose of the proposal is to create a shared interface that can be used by projects to interact with HTTP messages for both clients and servers. When I created the proposal, I envisioned the purpose is not to say pro…
Written by unknown
/ Original link
on Jun. 28, 2014
I recently gave a talk on Hexagonal Architecture at Laracon NYC. The feedback was great, but seemed to have left people wanting for some extra explanation and of course examples. This is an attempt to expand on the ideas of that presentation. Video of Talk Slides for Talk I found Hexagonal Architec…
Written by Brandon Savage
/ Original link
on Jun. 25, 2014
I speak a lot on design patterns. This year, I’ve given nearly a dozen talks on design patterns, relating to my book, Practical Design Patterns in PHP. One of the questions I get the most often about design patterns is, “how do I pick a design pattern to use in my project?” My answer is […]
Written by Evert Pot
/ Original link
on Jun. 24, 2014
We just released sabre/event 2.0 last week, featuring support for Promises. It's still kinda rare to need Promises in PHP. PHP isn't asynchronous the same way languages such as javascript are, and there's no real eventloop, unless you're one of the few that use libevent in PHP. It actually took me…