softmixt / php-itccompliance-test

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Getting Started with The Project

NOTE:

Since usage of any known framework was not allowed I've taken the chance to build a minimalistic one my self.

Installation:

  • run composer install
  • point server to Public folder
  • if NGINX server used:
location / {
    try_files $uri $uri/ /index.php$is_args$args;
}
  • if APACHE server used create a .htaccess file inside Public with the following content:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ index.php [QSA,L]

About


Languages

Language:Twig 66.2%Language:PHP 33.8%