Aegis is a simple but powerful framework for both new and experienced developers that aims to be as minimal as it can get while keeping the features you need to create an amazing site or application.
Ikaros is the PHP flavor of Aegis.
- Web server (Apache or Nginx)
- PHP 5.5 or higher
You can find the latest release in the releases page
Extract the contents and rename your project's directory
The index.php file has the following domain set to the Router by default:
Router::$domain = "localhost/Ikaros";
You'll want to change it to your project's location:
Router::$domain = "localhost/YourDirectory";
You'll also need to set the Base Route in the .htaccess by changing the following line in it:
RewriteBase /Ikaros
Just as with the router, change it to your path.
RewriteBase /YourDirectory