wj008 / beacon-web
The "Beacon Standard Edition" distribution
Installs: 168
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 3
Open Issues: 0
Language:HTML
Type:project
Requires
- php: >=8.0
- wj008/beacon: >=3.0.32
- wj354/tool: >=3.0.13
- dev-master
- 4.1.1
- 4.0.1
- 4.0.0
- 3.x-dev
- 3.0.22
- 3.0.21
- 3.0.20
- 3.0.19
- 3.0.18
- 3.0.17
- 3.0.16
- 3.0.15
- 3.0.14
- 3.0.13
- 3.0.12
- 3.0.11
- 3.0.10
- 3.0.9
- 3.0.8
- 3.0.7
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.x-dev
- 2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.22
- 2.0.21
- 2.0.20
- 2.0.19
- 2.0.18
- 2.0.17
- 2.0.16
- 2.0.15
- 2.0.14
- 2.0.13
- 2.0.12
- 2.0.11
- 2.0.10
- 2.0.9
- 2.0.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
This package is auto-updated.
Last update: 2025-03-10 01:09:44 UTC
README
The "Beacon Standard Edition" distribution
Beacon 介绍
这是一个PHP快速开发框架,轻量级简单高效安全的 CMF 框架。 文档会在有空的时间陆续更新.... 加星是我的动力。 如果有问题可以 issues 我。 帮助文档
安装
使用 composer 创建项目可以得到完整的应用 或者直接使用 phpstorm 创建工程时选择 composer 项目对话框底部项目搜索中搜索 wj008 选择 beacon-web 创建项目。
composer create-project wj008/beacon-web
环境要求
php 8.0 及以上,我的开发环境是php 8.0.3 如果是 nginx 请自行设置支持 pathinfo
mysql 是 5.7 及以上。
需要设置 url 重写,指向 index.php
网站目录应该指向 /www
/www/index.php
是入口文件。
补充 nginx 配置示例
server {
listen 8082;
server_name localhost;
location / {
root /cygdrive/e/works/php/beacon/www;
index index.html index.htm index.php;
if (!-e $request_filename){
rewrite ^(.*)$ /index.php$1 last;
}
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location ~ \.php(/.+)?$ {
root /cygdrive/e/works/php/beacon/www;
set $path_info "";
set $real_script_name $fastcgi_script_name;
if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {
set $real_script_name $1;
set $path_info $2;
}
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /cygdrive/e/works/php/beacon/www$real_script_name;
fastcgi_param SCRIPT_NAME $real_script_name;
fastcgi_param PATH_INFO $path_info;
include fastcgi_params;
}
}
debug.php 需要用命令行运行,最好是在 phpstrom 中直接右键运行,有意外不到的收获。
php debug.php
调试日志将在命令行中打印出来.