Skip to content

Commit d86c8b3

Browse files
committed
support PHP 7.2+
1 parent 287a883 commit d86c8b3

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/config.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
ubuntu:
55
strategy:
66
matrix:
7-
version: ["7.4", "8.0", "8.1", "8.2"]
7+
version: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2"]
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout php-bsdiff
@@ -20,5 +20,4 @@ jobs:
2020
- name: make
2121
run: make
2222
- name: test
23-
run: |
24-
make test TESTS="--show-diff tests"
23+
run: make test TESTS="--show-diff tests"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ For more information, visit his website at <http://www.daemonology.net/bsdiff/>.
1010

1111
## Requirements
1212

13-
* PHP 7.4+
13+
* PHP 7.2 to PHP 8.x
1414
* BZip2 1.0+
1515

1616
## Installation
@@ -32,7 +32,7 @@ extension=bsdiff.so
3232
In case BZip2 can't be found automatically, use option `--with-bz2` to specify the installation directory of BZip2. e.g.,
3333

3434
```bash
35-
./configure --with-bz2=/usr/local/opt/bzip2 # When BZip2 is stalled via Homebrew on MacOS.
35+
./configure --with-bz2=/usr/local/opt/bzip2 # When BZip2 is installed via Homebrew on MacOS.
3636
```
3737

3838
## Functions

0 commit comments

Comments
 (0)