PHP without a framework: Difference between revisions

From Rixort Wiki
Jump to navigation Jump to search
Line 8: Line 8:


  mkdir public src
  mkdir public src
Run composer to install dependencies and create <code>vendor</code>:
composer install


Create skeleton front controller at <code>public/index.php</code>
Create skeleton front controller at <code>public/index.php</code>

Revision as of 13:33, 6 March 2021

Instructions

Initialise composer project:

composer init

Create skeleton directory structure:

mkdir public src

Run composer to install dependencies and create vendor:

composer install

Create skeleton front controller at public/index.php

<?php
declare(strict_types=1);

require_once '../vendor/autoload.php';