epiphany icon indicating copy to clipboard operation
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.

Results 32 epiphany issues
Sort by recently updated
recently updated
newest added

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...