wave8/factotum-base
最新稳定版本:v1.7.1
Composer 安装命令:
composer require wave8/factotum-base
包简介
Factotum V8 - Base Module
README 文档
README
Factotum CMS - Base Module
php laravel base-module
maintained with ❤️ by
Introduction
Factotum is a Laravel-based open source CMS and application framework. It provides a modular architecture, a user-friendly interface, and a set of tools to build and manage web applications efficiently.
This repository contains the base module of Factotum, which includes essential features and functionalities required for building applications, as authentication, roles and permissions, media handling and more.
Requirements and Dependencies
- Laravel 12+
- PHP 8.4+
Install
Laravel Setup
- Install a fresh Laravel application and configure your .env file with the database keys.
# composer
composer create-project laravel/laravel example-app
- Require Factotum Base Module as a composer dependency and publish the configuration file.
The configuration file is used to seed the initial data, feel free to change its values
# composer composer require wave8/factotum-base # config php artisan vendor:publish --tag=factotum-base-config
- On the default User laravel model, you need to extend the
\Wave8\Factotum\Base\Models\Usermodel.
app/Models/User.php -class User extends Authenticatable +class User extends \Wave8\Factotum\Base\Models\User { /** @use HasFactory<\Database\Factories\UserFactory> */ use HasFactory, Notifiable;
- Install the Factotum Base Module. This procedure will run the migrations, seed the initial data and publish the assets.
# php
php artisan factotum-base:install
Please note
Some vendor config files, are published in an updated version during the installation, i.e.
spatie/laravel-query-builder
Changelog
Please see CHANGELOG for more information what has changed recently.
Releases
Please see ROADMAP v2 for more information about the next releases.
Contributing
Feel free to open issues and submit pull requests.
Security
If you discover any security related issues, please feel free to open issues and submit pull requests.
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 37
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-10-03