nataniel/e4u-framework

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

This package is auto-updated.

Last update: 2024-09-03 10:18:12 UTC


README

安装

composer require nataniel/e4u-framework:dev-master

使用

<?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();

测试

phpunit --configuration tests/phpunit.xml