epiphany
epiphany copied to clipboard
A micro PHP framework that's fast, easy, clean and RESTful. The framework does not do a lot of magic under the hood. It is, by design, very simple and very powerful.
Some of the examples show to do the routing like ``` $router = new EpiRoute(); $router->get('/', array('MyClass', 'MyMethod')); $router->run(); ``` while others show ``` getRoute()->get('/', 'showEndpoints'); getRoute()->get('/version', 'showVersion'); getRoute()->run(); ```...
I'm using your EpiCurl class for a small project and I mainly use the Symfony ClassLoader these days to autoload all the class I need and I noticed that EpiCurl...