plotnicsystems/lunatoolbox 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

plotnicsystems/lunatoolbox

最新稳定版本:v1.0

Composer 安装命令:

composer create-project plotnicsystems/lunatoolbox

包简介

The LunaToolbox simple PHP Framework.

README 文档

README

The LunaToolbox simple PHP Framework

Total time coded since Sep 16 2023  Latest Stable Version  License  Total Downloads

Installation

The best way to use this boilerplate is using Composer.

composer create-project plotnicsystems/lunatoolbox app-name

Run local server

Run the server using default php.

php -S localhost:8000 -t public

Authentication

LunaToolbox default authentication.

composer require plotnicsystems/lunatoolbox-auth

Register the LunaToolbox auth provider LunaToolbox\LunaToolboxAuth\Illuminate\Foundation\Support\LunaToolboxauthServiceProvider at config/app.php

...
'providers' => [
        /*
         * LunaToolbox Framework Service Providers...
         */
        LunaToolbox\Framework\Illuminate\Debug\DebugServiceProvider::class,
        LunaToolbox\Framework\Illuminate\Foundation\Support\Providers\AuthServiceProvider::class,
        App\Providers\RouteServiceProvider::class,
        App\Providers\AppServiceProvider::class,

        LunaToolbox\LunaToolboxAuth\Illuminate\Foundation\Support\LunaToolboxauthServiceProvider::class,
        ...
]

For configuring features, create a php file config/lunatoolbox-auth.php, fill

<?php

return [
    'features' => [
        'login' => env('LT_AUTH_LOGIN', true),
        'register' => env('LT_AUTH_REGISTER', true),
    ]
];

Login : http://localhost:8000/auth/login

Register : http://localhost:8000/auth/register

Security Vulnerabilities

If you discover a security vulnerability within LunaToolbox, please send an e-mail to LunaToolbox Email via mail@lunatoolbox.eu. All security vulnerabilities will be promptly addressed.

License

The LunaToolbox framework is open-sourced software licensed under the MIT license.

统计信息

  • 总下载量: 4
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: GPL-3.0-or-later
  • 更新时间: 2023-11-16