Let's not just use Symfony, let's conquer it! In this series, we're going to rip open the code that builds and boots Symfony's Container to see how it really works. Yes, this is geeky, and yes it's sweet!
Besides the occasional dinosaur, expect to do the following on our adventure:
- Build a container from scratch
- Master the ContainerBuilder and Definition objects: the backbones to the container
- See how Definitions are built with YAML
- Dump the container to PHP code and use it
- See how Symfony builds the container (woh)
- Learn how DependencyInjection Extension classes work (i.e. the guys who process all that config.yml stuff)
- Discover existing compiler passes and create your own