
- Tech Lead @ Flint Interactive.
- Open source developer, Symfony contributor & enthusiast.
- 8 years PHP & web commercial experience.
- #melbsf2 group co-organiser.
- In June, following an office server meltdown, we decided to move from SVN to Git in the cloud.
- We had ~350 non-archived (active) projects that needed to be moved.
- Many of our projects were multi-faceted.
- Many hinged off central libraries where the dependencies were stored.
- Multiple actions needed to take place to migrate each project.
- Project migration needed to be coordinated & prioritised to not mess up team of 8+ developers.
- This was a more complex operation than a shell script or single-file PHP script could take care of.
add in an implementation of SomeCommand,
and viola. we now have a fully functioning command-line app
Now our application will find all PHP files in the Command
directory matching pattern *Command.php
.
Note: this is actaully very similar to how the framework finds Command classes in your bundles!
This will execute svn2git $svnHref
and output any output as it comes from the command directly to the screen.
Processes can also execute asynchronously, or execute sandboxed PHP code. Check out the manual for more info:
(symfony.com/doc/.../process.html#running-processes-asynchronously)
Can be used to solve the age-old hydrate-one-object-from-another issue, or to quickly create limited data for access in a view.
This simple script creates a nested array set of only the data you're allowing to be exposed.
This can be very useful for creating "safe" versions of ORM data, or in an advanced usage, as it allows you to traverse through arrays or objects in the structure, you can use it to get a simple set of values from a complex object/array (handy for generating reports).
Symfony internally uses this in translating information from your object through to Form values, and back again.
- HTTP Foundation: The Symfony request/response, session and cookie management library. Very helpful when dealing with actual web requests.
- Routing: For any DIY framework that uses a front controller and needs to route the request to a class/function/"controller".
- Config: Very helpful series of classes to deal with accepting configuration for your application. Bonus usage: Can be used to validate external data or data from an API meets what you're expecting (as it so often doesn't).
- Event Dispatcher: Implementation of the Observer programming pattern. Very helpful for being able to inform an unknown part of your application when certain things have occurred (aka 'hooks').
- DOM Crawler & CSS Selector: Helps you parse and extract content from X/HTML. Very useful for functional testing. Internally we're implementing it as a crawler to ensure that projects include standard things like Google analytics, etc.
- Yaml: Originally a Symfony1 component, designed to parse Yaml configuration/data into an array structure.
- and so many more.. make sure you check them out: symfony.com/components.
Oh, and..
Presentations welcome!