WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 011796f

Browse files
authored
Merge pull request #62 from huangzhhui/release-v0.5.3
Update version number to v0.5.3
2 parents 5313c2b + 24f9253 commit 011796f

File tree

3 files changed

+19
-7
lines changed

3 files changed

+19
-7
lines changed

README-CN.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Box 致力于帮助提升 PHP 应用程序的编程体验,尤其有助于 Hype
1313
##### Mac
1414

1515
```bash
16-
wget https://github.com/hyperf/box/releases/download/v0.5.2/box_x86_64_macos -O box
16+
wget https://github.com/hyperf/box/releases/download/v0.5.3/box_x86_64_macos -O box
1717
sudo mv ./box /usr/local/bin/box
1818
sudo chmod 755 /usr/local/bin/box
1919
// 确保 /usr/local/bin/box 在你的 $PATH 环境中,或者将 `box` 放到你想要的任意 $PATH 路径中
@@ -22,7 +22,7 @@ sudo chmod 755 /usr/local/bin/box
2222
##### Linux x86_64
2323

2424
```bash
25-
wget https://github.com/hyperf/box/releases/download/v0.5.2/box_x86_64_linux -O box
25+
wget https://github.com/hyperf/box/releases/download/v0.5.3/box_x86_64_linux -O box
2626
sudo mv ./box /usr/local/bin/box
2727
sudo chmod 755 /usr/local/bin/box
2828
// 确保 /usr/local/bin/box 在你的 $PATH 环境中,或者将 `box` 放到你想要的任意 $PATH 路径中
@@ -41,7 +41,7 @@ sudo chmod 755 /usr/local/bin/box
4141
##### Windows
4242

4343
```powershell
44-
curl -o box.exe https://github.com/hyperf/box/releases/download/v0.5.2/box_x64_windows.exe
44+
curl -o box.exe https://github.com/hyperf/box/releases/download/v0.5.3/box_x64_windows.exe
4545
// 将 `box.exe` 放到你想要的任意 Path 环境变量路径中,同时 Windows 版本在执行时需要在命令行中使用 `box.exe` 而不是 `box`
4646
```
4747

@@ -86,3 +86,7 @@ box config set kernel swoole
8686
- `box phpstan <argument>` 通过当前 box 的 PHP 版本运行任何 `phpstan` 命令,composer bin 的版本取决于最后执行的 `get phpstan` 命令,此命令仅在 box v0.3.0 及以上的版本中可用
8787
- `box pint <argument>` 通过当前 box 的 PHP 版本运行任何 `pint` 命令,composer bin 的版本取决于最后执行的 `get pint` 命令,此命令仅在 box v0.3.0 及以上的版本中可用
8888
- `box version` 输出当前 box bin 的版本号
89+
90+
### 关于 Swow-Skeleton
91+
92+
希望体验 Box 完整功能的朋友,需要通过 Swow Kernel 来运行,因此您需要基于 [hyperf/swow-skeleton](https://github.com/hyperf/swow-skeleton) 来运行您的项目,可通过 `box composer create-project hyperf/swow-skeleton:dev-master` 命令来创建一个基于 Hyperf 3.0 RC 版的 Swow 骨架项目。

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Box is committed to helping improve the programming experience of PHP applicatio
1313
##### Mac
1414

1515
```bash
16-
wget https://github.com/hyperf/box/releases/download/v0.5.2/box_x86_64_macos -O box
16+
wget https://github.com/hyperf/box/releases/download/v0.5.3/box_x86_64_macos -O box
1717
sudo mv ./box /usr/local/bin/box
1818
sudo chmod 755 /usr/local/bin/box
1919
// Make sure /usr/local/bin/box in your $PATH env, or put `box` into any path in $PATH env that you want
@@ -22,7 +22,7 @@ sudo chmod 755 /usr/local/bin/box
2222
##### Linux x86_64
2323

2424
```bash
25-
wget https://github.com/hyperf/box/releases/download/v0.5.2/box_x86_64_linux -O box
25+
wget https://github.com/hyperf/box/releases/download/v0.5.3/box_x86_64_linux -O box
2626
sudo mv ./box /usr/local/bin/box
2727
sudo chmod 755 /usr/local/bin/box
2828
// Make sure /usr/local/bin/box in your $PATH env, or put `box` into any path in $PATH env that you want
@@ -41,7 +41,7 @@ sudo chmod 755 /usr/local/bin/box
4141
##### Windows
4242

4343
```powershell
44-
curl -o box.exe https://github.com/hyperf/box/releases/download/v0.5.2/box_x64_windows.exe
44+
curl -o box.exe https://github.com/hyperf/box/releases/download/v0.5.3/box_x64_windows.exe
4545
// Put `box.exe` into any path in $PATH env that you want, and use `box.exe` instead of `box` when executing on Windows
4646
```
4747

@@ -86,3 +86,11 @@ box config set kernel swoole
8686
- `box phpstan <argument>` to run any `phpstan` command via box, the version of the composer bin depends on the last executed `get phpstan` command, since box v0.3.0
8787
- `box pint <argument>` to run any `pint` command via box, the version of the composer bin depends on the last executed `get pint` command, since box v0.3.0
8888
- `box version` to dump the current version of the box bin
89+
90+
### 关于 Swow-Skeleton
91+
92+
希望体验 Box 完整功能的朋友,需要通过 Swow Kernel 来运行,因此您需要基于 [hyperf/swow-skeleton](https://github.com/hyperf/swow-skeleton) 来运行您的项目,可通过 `box composer create-project hyperf/swow-skeleton:dev-master` 来创建一个基于 Hyperf 3.0 RC 版的 Swow 骨架项目。
93+
94+
### About Swow Skeleton
95+
96+
If you want to experience the full features of Box, you need to run it based on the Swow Kernel, so you need to base your project on [hyperf/swow-skeleton](https://github.com/hyperf/swow-skeleton) to run your project, you can create a Swow skeleton project based on Hyperf 3.0 RC version by `box composer create-project hyperf/swow-skeleton:dev-master` command.

src/app/Box.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414

1515
class Box
1616
{
17-
public const VERSION = '0.5.2';
17+
public const VERSION = '0.5.3';
1818
}

0 commit comments

Comments
 (0)