The Fast and Easy PHP Framework for Rapid Development.
The minimum requirement by Asymptix Framework is that your Web server supports PHP 5.4.
To install basic framework libs use Composer composer install
command with composer.json
configuration file.
{
"minimum-stability": "dev",
"require": {
"php": ">=5.4.0",
"asymptix/framework": ">=2.0.0"
}
}
After Composer installation you just need require autoload file with the next command:
require_once("./vendor/autoload.php");
It's highly recommended to send header information with framework signature for better recognition with parsers and analyzers (like Wappalyzer). You may see example in the index.php file:
header('X-Powered-By: Asymptix PHP Framework, PHP/' . phpversion());
Copyright (c) 2009-2017 Asymptix.