webfiori/app
Composer 安装命令:
composer create-project webfiori/app
包简介
The default application template for WebFiori Framework.
README 文档
README
The default application template for WebFiori Framework. Use this as a starting point to create new WebFiori projects.
Requirements
- PHP >= 8.1
- Extensions:
json,mbstring,fileinfo,openssl - Composer
Quick Start
composer create-project webfiori/app my-site
cd my-site
php -S localhost:8080 -t public
Then open http://localhost:8080 in your browser.
Project Structure
├── public/ # Web server document root
│ ├── index.php # Application entry point
│ ├── .htaccess # Apache rewrite rules
│ ├── web.config # IIS rewrite rules
│ └── assets/ # Static files (CSS, JS, images)
├── App/ # Application source code
│ ├── Apis/ # REST API services
│ ├── Commands/ # Custom CLI commands
│ ├── Config/ # Configuration files (auto-generated)
│ ├── Database/ # Migrations, seeders, tables
│ ├── Domain/ # Domain entities
│ ├── Health/ # Health check implementations
│ ├── Ini/ # Initialization and route definitions
│ ├── Langs/ # Internationalization files
│ ├── Middleware/ # Custom middleware
│ ├── Pages/ # Page controllers and views
│ ├── Policies/ # ABAC policy classes
│ ├── Storage/ # Sessions, logs, uploads (not web-accessible)
│ └── Tasks/ # Background jobs and scheduled tasks
├── tests/ # PHPUnit tests
├── composer.json
├── webfiori # CLI entry point (Linux/macOS)
└── webfiori.bat # CLI entry point (Windows)
Customizing the App Directory
By default, the framework uses App/ as the application root directory. To change this, edit the first parameter of App::initiate() in public/index.php:
App::initiate('MyApp', 'public', __DIR__);
Reasons you might want to rename it:
- Gives your project a distinct identity instead of a generic
App/folder. - Avoids naming conflicts if you're integrating WebFiori into an existing project that already has an
App/directory. - Makes it easier to distinguish between multiple WebFiori-based projects in the same workspace.
Running Tests
composer test
Code Style
This project uses PHP CS Fixer for code style enforcement.
composer cs-check # Check for violations (dry run) composer cs-fix # Auto-fix violations
CLI Usage
WebFiori includes a CLI tool for common tasks:
# Linux/macOS php webfiori # Windows webfiori.bat
Common commands:
php webfiori create:service # Create a new API service php webfiori create:middleware # Create a new middleware php webfiori create:migration # Create a database migration php webfiori create:command # Create a custom CLI command php webfiori migrations:run # Run pending migrations php webfiori migrations:step # Interactively apply/skip migrations php webfiori routes:cache # Build route cache for production php webfiori services:list # List auto-discovered API services php webfiori help # Show all available commands
Documentation
Contributing
For information on how to contribute, see the contribution guide.
Reporting Issues
- For bugs and feature requests, open an issue.
- For security vulnerabilities, please email ibrahim@webfiori.com.
License
This project is licensed under the MIT License.
统计信息
- 总下载量: 12.03k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2021-05-05