Alex Rock

Results 67 comments of Alex Rock

You could use Symfony's Client and DomCrawler classes for this (even if not asynchronous).

I'd personally recommend using [Box](http://box-project.org/) , because the [Symfony installer](https://github.com/symfony/symfony-installer) already uses it for instance,

Sorry I won't have doc links for all points, but here are some: --- > * [ ] Controllers - The base Controller class * https://github.com/symfony/symfony/blob/master/src/Symfony/Bundle/FrameworkBundle/Controller/AbstractController.php * https://github.com/symfony/symfony/blob/master/src/Symfony/Bundle/FrameworkBundle/Controller/ControllerTrait.php --- >...

@Beakerboy I'd prefer an oriented object approach like `$graph->addNode(Node $node);` and `$graph->addEdge(Edge $edge);` or similar

Plane graph (nodes+edges) are not so hard to represent, you can just, for each edge, have "startNode" and "endNode", and for nodes, "edgesStarted" and "edgesEnded" for a cool bidirectionnal relationship.

The OOP approach allows flexibility and allows to add new properties / overrides to the different entities, especially if you depend on interfaces and respect ISP and LSP.

I feel like it's way more convenient to use this PR if you just want the tag `v0.1.0` instead of having to execute this `echo ::set-output ...` command by youself....

After I started Rymfony, I stumbled upon your project at some point 😄 It looks very promising indeed, my goal with Rymfony is to do the same thing as Symfony...

@shouze I don't know if you followed the last months of development, but there were some improvements on the `php:list` command, and the FastCGI implementation should be okay now! I...

I think this is a good opportunity to start thinking about a `rymfony config` command, or similar 😉