Skip to content

Commit

Permalink
Add PHP8.4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
NoiseByNorthwest committed Sep 29, 2024
1 parent 73c16fc commit fc793d8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]
php: [ '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]

name:
- linux
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Current requirements are:
* x86-64 or ARM64
* **GNU/Linux**, **macOS** or **FreeBSD**
* zlib dev package (e.g. zlib1g-dev on Debian based distros)
* PHP 5.4 to 8.3
* PHP 5.4 to 8.4

## Installation

Expand Down Expand Up @@ -503,7 +503,7 @@ See the [LICENSE][:link-license:] file for more information.
[:badge-ci:]: https://github.com/NoiseByNorthwest/php-spx/actions/workflows/main.yml/badge.svg
[:link-ci:]: https://github.com/NoiseByNorthwest/php-spx/actions/workflows/main.yml

[:badge-php-versions:]: https://img.shields.io/badge/php-5.4--8.3-blue.svg
[:badge-php-versions:]: https://img.shields.io/badge/php-5.4--8.4-blue.svg
[:badge-supported-platforms:]: https://img.shields.io/badge/platform-GNU/Linux%20|%20macOS%20|%20FreeBSD%20-yellow
[:badge-supported-arch:]: https://img.shields.io/badge/architecture-x86--64%20|%20ARM64%20-silver

Expand Down
4 changes: 2 additions & 2 deletions src/php_spx.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
# error "Only x86-64 and ARM64 architectures are supported"
#endif

#if ZEND_MODULE_API_NO < 20100525 || ZEND_MODULE_API_NO > 20230831 // 8.3-RC5
# error "Only the following PHP versions are supported: 5.4 to 8.3"
#if ZEND_MODULE_API_NO < 20100525 || ZEND_MODULE_API_NO > 20240924
# error "Only the following PHP versions are supported: 5.4 to 8.4"
#endif

#define PHP_SPX_EXTNAME "SPX"
Expand Down

0 comments on commit fc793d8

Please sign in to comment.