Skip to content

Raise min PHP version to 7.3 #183

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ jobs:
fail-fast: false
matrix:
php:
- 7.1.33
- 7.2.34
- 7.3.26
- 7.4.14
- 8.0.1
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project follows [Semantic Versioning](http://semver.org/).

## [Unreleased] - Future
### Changed
- Min PHP version is 7.3

## [1.3.0] - 2020-10-13
### Fixed
- ArrayAccess implemented consistently
Expand Down
10 changes: 5 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,30 +14,30 @@ environment:
matrix:
- ARCH: x86
INT_SIZE: 32
PHP_VER: 7.2
PHP_VER: 7.3
VC_VER: vc15
ZTS: --enable-zts
- ARCH: x64
INT_SIZE: 64
PHP_VER: 7.2
PHP_VER: 7.3
VC_VER: vc15
ZTS: --enable-zts
- ARCH: x86
INT_SIZE: 32
PHP_VER: 7.2
PHP_VER: 7.3
VC_VER: vc15
ZTS: --disable-zts
- ARCH: x64
INT_SIZE: 64
PHP_VER: 7.2
PHP_VER: 7.3
VC_VER: vc15
ZTS: --disable-zts

install:
- cmd: choco feature enable -n=allowGlobalConfirmation
- cmd: cinst wget
- cmd: mkdir C:\projects\php-ds\bin
- cmd: wget https://getcomposer.org/composer.phar -O C:\projects\php-ds\bin\composer.phar
- cmd: cd C:\projects\php-ds\bin && appveyor DownloadFile https://getcomposer.org/composer.phar

build_script:
- cmd: >-
Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
<dependencies>
<required>
<php>
<min>7.0.0</min>
<min>7.3.0</min>
</php>
<pearinstaller>
<min>1.4.0b1</min>
Expand Down