Skip to content

Commit 670eb8f

Browse files
authored
Merge pull request #376 from guoard/php8.3
feat: add support for php 8.3 and node 20
2 parents 173c77c + 7a73b52 commit 670eb8f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+838
-53
lines changed

.github/workflows/workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
php_version: ['8.2','8.1','8.0','7.4','7.3','7.2']
18+
php_version: ['8.3','8.2','8.1','8.0','7.4','7.3','7.2']
1919
variant: ['apache','cli','fpm']
2020
# builder: [ {arch: "amd64", os: "ubuntu-latest"}, {arch: "arm64", os: "macos-latest"}]
2121
builder: [ {arch: "amd64", os: "ubuntu-latest"}, {arch: "arm64", os: "ubuntu-latest"}]
@@ -64,7 +64,7 @@ jobs:
6464
strategy:
6565
fail-fast: false
6666
matrix:
67-
php_version: ['8.2','8.1','8.0','7.4','7.3','7.2']
67+
php_version: ['8.3','8.2','8.1','8.0','7.4','7.3','7.2']
6868
variant: ['apache','cli','fpm']
6969
steps:
7070
- name: Checkout

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
### Minor changes
66

7+
* **2023-12-13**
8+
* Support for PHP 8.3
9+
* Support for Node v20
10+
711
* **2022-12-18**
812
* Support for PHP 8.2
913

Makefile

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,21 @@ blueprint: ## Generate all blueprints file
44
@if ! type orbit >/dev/null 2>&1; then echo "Missing orbit dependency, please install from https://github.com/gulien/orbit/"; exit 1; fi
55
orbit run generate
66

7-
test-latest: test-8.2 ## Test the latest build only
7+
test-latest: test-8.3 ## Test the latest build only
88

99
_test-prerequisites: blueprint
1010
docker pull ubuntu:20.04
1111

12-
test-quick: ## Test 8.0, 8.1 and 8.2 quickly
12+
test-quick: ## Test 8.0, 8.1, 8.2 and 8.3 quickly
1313
VERSION=8.0 VARIANT=cli $(MAKE) _test-version-quick
1414
VERSION=8.1 VARIANT=cli $(MAKE) _test-version-quick
1515
VERSION=8.2 VARIANT=cli $(MAKE) _test-version-quick
16+
VERSION=8.3 VARIANT=cli $(MAKE) _test-version-quick
17+
18+
test-8.3: ## Test php8.3 build only
19+
VERSION=8.3 VARIANT=cli $(MAKE) _test-version
20+
VERSION=8.3 VARIANT=apache $(MAKE) _test-version
21+
VERSION=8.3 VARIANT=fpm $(MAKE) _test-version
1622

1723
test-8.2: ## Test php8.2 build only
1824
VERSION=8.2 VARIANT=cli $(MAKE) _test-version

README.md

Lines changed: 68 additions & 26 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)