nataniel/e4u-framework

dev-master 2024-01-03 09:02 UTC

This package is auto-updated.

Last update: 2024-03-03 09:22:48 UTC


README

Installation

composer require nataniel/e4u-framework:dev-master

Usage

<?php
chdir(dirname(__DIR__));

// Your application namespace
define('APPLICATION', 'Main');

// Bootstrap E4u\Application
require_once __DIR__ . '/../vendor/autoload.php';
$app = E4u\Loader::get(APPLICATION);
$app->run()->send();

Tests

phpunit --configuration tests/phpunit.xml