Skip to content
/ yiyu Public
forked from willphp/aphp

WillPHP Framework---A lightweight but high-performance php development framework.--->一鱼PHP框架,一个轻量却高性能的php开发框架。

License

Notifications You must be signed in to change notification settings

T1anjiu/yiyu

This branch is 23 commits behind willphp/aphp:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

216714a · Dec 11, 2023

History

28 Commits
Aug 24, 2023
Nov 14, 2023
Jun 25, 2023
Nov 14, 2023
Nov 14, 2023
Nov 14, 2023
Jul 3, 2022
Aug 24, 2023
Dec 7, 2023
May 4, 2023
Nov 14, 2023
Dec 10, 2023
Nov 14, 2023
Nov 14, 2023

Repository files navigation

aidigu

PHP7.4.3~8.2.x Latest Stable Version Latest Unstable Version Download Size Apache-2.0 License

WillPHP Framework

WillPHP Framework is a lightweight PHP 8 development framework.


The Features

  • It is easy to LEARNIf you know ThinkPHP, you'll find WillPHP easy to grasp.Of course, if you're not familiar with ThinkPHP, that's perfectly fine. This is a framework designed for beginners, and it's very easy to get started with, even if you are learning from scratch.

  • More LightOnly 200KB+, WillPHP boasts a simple directory and file structure.

  • SimpleDevelopment requires minimal code, and template syntax is customizable.

  • ORM (Object-Relational Mapping)It is Similar to ThinkPHP, WillPHP offers straightforward database operations.

  • SecurityAutomatically filters and validates incoming request parameters for enhanced security.


System Requirements

  • PHP7.4.3~PHP8.2.x
  • Required extensions such as PDO,etc.

Development Manual

Development Manual: https://willphp.gitee.io

Installation

Gitee Repository: https://gitee.com/willphp/yiyu

GitHub Repository: https://github.com/willphp/yiyu

Composer

You can use the 'composer' command to install and extend:

composer create-project willphp/yiyu blog --prefer-dist

If no composer extension is needed, it is recommended to delete the vendor directory to speed up the framework's operation!


URL Rewriting Rules

Apache Rewriting Rule public/.htaccess File:

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php? [L,E=PATH_INFO:$1]
</IfModule>

Nginx Rewriting Rule public/nginx.htaccess File:

location / {
	if (!-e $request_filename) {
		rewrite  ^(.*)$  /index.php/$1  last;
	}
}

Talk to us!

QQ Group 1:325825297 Q Group 2:16008861

Contact & Support

Official Website::113344.com Our Email:大松栩(24203741@qq.com)

Also you can communicate with us through issues, raise your questions, or provide suggestions. We will do our best to answer and make improvements. Thank you for your support and encouragement for this project. We will continue to work hard and strive for further progress!


Copyright ©

This project adheres to the Apache-2.0 License

About

WillPHP Framework---A lightweight but high-performance php development framework.--->一鱼PHP框架,一个轻量却高性能的php开发框架。

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 95.8%
  • Smarty 4.2%