mixphp-plus/framework

mixphp 框架

dev-master 2022-04-19 04:31 UTC

This package is not auto-updated.

Last update: 2024-10-02 14:25:13 UTC


README

开坑) 在这里开始我的一把梭组件开发

[x] 通过php bin/mix.php start 启动服务(可通过配置文件配置服务)

[x] 接入config.php配置服务

[ ] 接入一把梭API

[ ] 接入常见组件提供一键command

启动

php bin/mix.php start

#!/usr/bin/env php
<?php
ini_set('display_errors', 'on');
ini_set('display_startup_errors', 'on');
ini_set('error_reporting', E_ALL ^ E_NOTICE);
ini_set('memory_limit', '1G');

date_default_timezone_set('Asia/Shanghai');

! defined('BASE_PATH') && define('BASE_PATH', dirname(__DIR__, 1));

require BASE_PATH . '/vendor/autoload.php';

define("APP_DEBUG", env('APP_DEBUG'));
use App\Error;

Error::register();

(function () {
    (new \Mix\Framework\Application())->run();
})();

许可证

Apache许可证版本2.0, https://apache.ac.cn/licenses/