catpaw/starter
最新稳定版本:4.4.5
Composer 安装命令:
composer create-project catpaw/starter
包简介
A php CatPaw starter template
README 文档
README
You can run your program in one of three modes.
Development Mode
Enter Development Mode with
make dev
This mode will run your program with XDebug enabled.
Note
See section Debugging with VSCode
Watch Mode
Enter Watch Mode with
make watch
This mode will run your program with XDebug enabled and it will restart your program every time you make a change to your source code.
Note
See section Debugging with VSCode
Note
By default "source code" means the "src" directory.
You can change this configuration in your makefile, see section watch, parameter resources.
Production Mode
Enter Production Mode with
make start
It's just as it sounds, run your program directly.
No debuggers, not extra overhead.
Build
It is possible, but no required, to bundle your program into a single .phar file with
make build
The building process can be configured inside the build.ini file.
After building your application, you can simply run it using
php out/app.phar
The resulting .phar will include the following directories
srcvendor.build-cache(created at build time)
It's a portable bundle, you just need to make sure php is installed on whatever machine you're trying to run it on.
Debugging with VSCode
Install xdebug
apt install php8.3-xdebug
Configure your .vscode/launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Listen",
"type": "php",
"request": "launch",
"port": 9003
}
]
}
Start debugging.
统计信息
- 总下载量: 97
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-02-03