EasyFramework is a PHP framework for small to medium web applications. It’s as simple and concise as possible, trying to stand out of your way.
This repository is for EasyFramework developers. All users should download EasyFramework from our official site.
Go to tags section to download the stable version of the framework.
Rename the folder to easyframework and put into your web server.
Now you can access http://localhost/easyframework/requirements to see if your web server support EasyFW.
If everything went ok you can start developing your apps.
You can put your apps outside the easyframework folder adn point to it. To do this create your app and then go to
app/webroot/index.php chage the depp of yout root folder.
To use apps outside the easyframework folder use this:
defined('ROOT') || define('ROOT', dirname(dirname(dirname(dirname(__FILE__)))));
To use apps inside the easyframework folder use:
defined('ROOT') || define('ROOT', dirname(dirname(dirname(__FILE__))));
- Find and report bugs and help us fix them
- Fork our repository and start writing some code! Take a look at the Roadmap to see where we’re going.
- Help us enhance our documentation
See our wiki for more information on development.