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

I've only tested this for EpiSession::PHP. Had a typo in the last pull request.

I've added the EpiApi::load function to read API's from an ini file. It's basically a copy of EpiRoute::load with an added 'visibility' parameter. I hope that is more or less...

The odd UTF8 error or otherwise can cause nothing to output and you have no idea what the error could be. This outputs an error message if the framework failed...

Using the function getSession() when you add just one of the available session methods you get the following error: Warning: array_shift() expects parameter 1 to be array, string given in...

Added support to allow for multiple servers and set memcached options. $hosts = array( 'host1', 'host2' ); $ports = array( 11211, 11212 ); $options = array( Memcached::OPT_DISTRIBUTION => Memcached::DISTRIBUTION_CONSISTENT, Memcached::OPT_LIBKETAMA_COMPATIBLE...

- Changed !empty to isset where 0 is valid - Added expiration parameter on Session - Changed "empty($key) ? $_COOKIE[EpiSession::COOKIE] : $key;" because $key is not defined in scope -...

Session - Compress value 0 is valid - Expiry value 0 is valid - Actually setting expiry value - Cookie key, to use same session Cache - Compress value 0...

Added a call to PHP header('Content-type: application/json') so that Response header reflects the response JSON content

Hi! To simplify our deployment, we need to have the ini config file in an external directory. This directory must: - **to be a directory that is not hard coded...