shiros/luna-skeleton
Composer 安装命令:
composer create-project shiros/luna-skeleton
包简介
Luna PHP Framework Skeleton
关键字:
README 文档
README
# Luna PHP Framework Skeleton A pre-configured **starter template** to build your application with the modern, lightweight, and extensible **Luna PHP Framework**. Designed to simplify development, ensuring scalability, **PSR compliance**, and seamless integration of the Luna Framework. Built for **PHP 8.2**, leveraging the full power of modern PHP.[[TOC]]
ℹ️ About the Skeleton
The Luna Skeleton is designed to provide a smooth starting point for developing applications with the Luna Framework. It includes all essential configuration and folder structures you need to kickstart your next PHP project.
This project is written in PHP 8.2+ and uses Composer for dependency management.
- Complete integration with Luna Framework.
- Adheres to Modern PHP Standards.
- Extensible and modular design to fit a variety of use cases.
Learn more about the Luna Framework by visiting the official Luna Wiki.
Key Features
- Simplified Setup: Pre-configured with the Luna Framework, helping you save time on boilerplate.
- PSR-4 Autoloading: Fully compliant with modern PHP standards, ensuring better modularity.
- Composer Compatibility: Easily manage dependencies using the
composer.jsonfile provided. - Scalable and Modular: Straightforward structure to grow your project efficiently.
🗂️ Directory Structure
The skeleton follows a clean and modular architecture:
📂 skeleton/
├── 📂 config/ # Configuration files (modular & extensible)
├── 📂 src/ # Application core
├── 📂 var/ # Cache, logs, and generated files
├── 📂 vendor/ # Composer packages
├── 📄 .gitignore # Git exclusions
├── 📄 composer.json # Composer metadata
├── 📄 composer.lock # Locked dependencies version
├── 📄 LICENSE # License information
├── 📄 luna.lock # Luna lock management file
└── 📄 README.md # Project documentation
🔧 Dependencies
This skeleton project utilizes the Luna PHP Framework as the core library. Dependencies required include:
- Luna Framework: Core framework for modern PHP applications. (MIT License)
- Developer tools for testing:
Refer to the composer.json file for additional details.
⚙️ Setup and Installation
To get started with this skeleton:
Step 1: Create the Project
First, ensure you have Composer installed in your system.
The, creates a new project using the following command:
composer create-project shiros/luna-skeleton <your-project-name>
You'll need PHP 8.2+ installed on your system.
Step 2: Install Dependencies
Navigate to the root project folder and install the required dependencies with Composer:
composer install
This will ensure all dependencies are fetched, including shiros/luna and PHPUnit for testing purposes.
Step 3: Start Developing
Once setup is complete, you can start developing your application by extending the provided core. For adding additional
configuration, utilize /config and define custom modules.
🚀 Usage Example
Refer to the official documentation for advanced examples and further details.
Registering kernel
The Luna Framework kernel is easy to load. Here's an example on how to do it:
use Luna\Component\Lock\LunaLock;
use Luna\Kernel;
use Luna\KernelInterface;
try {
/**
* Create Luna kernel options.
* Options let you customize the kernel.
*
* - KernelInterface::OPT_ENVIRONMENT: Allows specifying a custom environment file / instance.
* - KernelInterface::OPT_LOCK : Allows specifying a custom lock file.
* - KernelInterface::OPT_STANDALONE : Deactivate Luna's modules loading.
*/
$options = [
// Environment
KernelInterface::OPT_ENVIRONMENT => '/path/to/env_file',
KernelInterface::OPT_ENVIRONMENT => [ 'key1' => 'value1' ],
// Lock
KernelInterface::OPT_ENVIRONMENT => '/path/to/lock_file.lock',
KernelInterface::OPT_ENVIRONMENT => new LunaLock(),
// Mode
KernelInterface::OPT_STANDALONE => true, // By default, the standalone mode isn't enabled.
];
/**
* Create a Luna Kernel instance.
* You can pass options to customize the kernel.
*/
$kernel = new Kernel();
// $kernel = new Kernel($options);
/**
* Starts the kernel as a Web handler.
* You could do that only if the module 'shiros/web' is installed.
*/
$kernel->start();
} catch (Throwable $e) {
echo 'Error: ' . $e->getMessage();
}
Handling Configuration Files
Configuration management in Luna is straightforward and supports multiple formats (e.g., PHP, JSON, YAML). Here's an example on how to use it:
use Luna\Config\Config;
try {
// Create a config instance
$config = new Config();
/**
* Load your config folder.
* Loads 'config/app.php', 'config/services.php', etc.
*/
$config->load(
path : __DIR__ . '/config',
files: ['app', 'services'] // Target files. Configuration files to load
);
// Show the configuration
var_dump($config->all());
} catch (Throwable $e) {
echo 'Error: ' . $e->getMessage();
}
📃 License
This project is licensed under the MIT License, allowing you to use and modify this project freely.
See the LICENSE file for more details.
👨💻 Authors and Contributors
This project was created and is maintained by Alexandre Caillot (Shiroe_sama), with contributions from the community.
Authors
Contributors
We thank the following contributors for making this project better:
shiros/luna-skeleton 适用场景与选型建议
shiros/luna-skeleton 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 32 次下载、GitHub Stars 达 0, 最近一次更新时间为 2018 年 05 月 24 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「framework」 「Skeleton」 「ShirOS」 「Luna」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 shiros/luna-skeleton 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 shiros/luna-skeleton 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 shiros/luna-skeleton 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
PHP Framework HLEB2 is the foundation of the web application. Provides ease of development and application performance.
Luna PHP Framework
Slim starter / Slim skeleton package to boost your development with Slim framework
Base Skeleton for Laravel Application
An awesome skeleton for modern PHP development.
Contao dummy frontend modules.
统计信息
- 总下载量: 32
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-05-24