Skip to content
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

Update compatibility info #96

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
max-parallel: 1
fail-fast: true
matrix:
php: [8.0, 8.1, 8.2]
php: [8.1, 8.2, 8.3]
env:
PUBLISH_KEY: ${{ secrets.PUBLISH_KEY }}
SUBSCRIBE_KEY: ${{ secrets.SUBSCRIBE_KEY }}
Expand Down
80 changes: 30 additions & 50 deletions .pubnub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -252,11 +252,9 @@ supported-platforms:
- Mac OS X 10.8 or later, amd64
- Windows 7 or later, amd64, 386
editors:
- PHP 5.6
- PHP 7.0
- PHP 7.1
- PHP 7.2
- PHP 7.3
- PHP 8.1
- PHP 8.2
- PHP 8.3
sdks:
- full-name: PHP SDK
short-name: PHP
Expand Down Expand Up @@ -294,11 +292,9 @@ sdks:
supported-operating-systems:
macOS:
runtime-version:
- PHP 5.6
- PHP 7.0
- PHP 7.1
- PHP 7.2
- PHP 7.3
- PHP 8.1
- PHP 8.2
- PHP 8.3
minimum-os-version:
- Mac OS X 10.8
maximum-os-version:
Expand All @@ -308,11 +304,9 @@ sdks:
- x86-64
Windows:
runtime-version:
- PHP 5.6
- PHP 7.0
- PHP 7.1
- PHP 7.2
- PHP 7.3
- PHP 8.1
- PHP 8.2
- PHP 8.3
minimum-os-version:
- Windows 7 Professional
- Windows 7 Enterprise
Expand All @@ -325,11 +319,9 @@ sdks:
- x86-64
Linux:
runtime-version:
- PHP 5.6
- PHP 7.0
- PHP 7.1
- PHP 7.2
- PHP 7.3
- PHP 8.1
- PHP 8.2
- PHP 8.3
minimum-os-version:
- Ubuntu 16.04 LTS
maximum-os-version:
Expand Down Expand Up @@ -362,11 +354,9 @@ sdks:
supported-operating-systems:
macOS:
runtime-version:
- PHP 5.6
- PHP 7.0
- PHP 7.1
- PHP 7.2
- PHP 7.3
- PHP 8.1
- PHP 8.2
- PHP 8.3
minimum-os-version:
- Mac OS X 10.8
maximum-os-version:
Expand All @@ -376,11 +366,9 @@ sdks:
- x86-64
Windows:
runtime-version:
- PHP 5.6
- PHP 7.0
- PHP 7.1
- PHP 7.2
- PHP 7.3
- PHP 8.1
- PHP 8.2
- PHP 8.3
minimum-os-version:
- Windows 7 Professional
- Windows 7 Enterprise
Expand All @@ -393,11 +381,9 @@ sdks:
- x86-64
Linux:
runtime-version:
- PHP 5.6
- PHP 7.0
- PHP 7.1
- PHP 7.2
- PHP 7.3
- PHP 8.1
- PHP 8.2
- PHP 8.3
minimum-os-version:
- Ubuntu 16.04 LTS
maximum-os-version:
Expand Down Expand Up @@ -430,11 +416,9 @@ sdks:
supported-operating-systems:
macOS:
runtime-version:
- PHP 5.6
- PHP 7.0
- PHP 7.1
- PHP 7.2
- PHP 7.3
- PHP 8.1
- PHP 8.2
- PHP 8.3
minimum-os-version:
- Mac OS X 10.8
maximum-os-version:
Expand All @@ -444,11 +428,9 @@ sdks:
- x86-64
Windows:
runtime-version:
- PHP 5.6
- PHP 7.0
- PHP 7.1
- PHP 7.2
- PHP 7.3
- PHP 8.1
- PHP 8.2
- PHP 8.3
minimum-os-version:
- Windows 7 Professional
- Windows 7 Enterprise
Expand All @@ -461,11 +443,9 @@ sdks:
- x86-64
Linux:
runtime-version:
- PHP 5.6
- PHP 7.0
- PHP 7.1
- PHP 7.2
- PHP 7.3
- PHP 8.1
- PHP 8.2
- PHP 8.3
minimum-os-version:
- Ubuntu 16.04 LTS
maximum-os-version:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This is the official PubNub PHP SDK repository.

PubNub takes care of the infrastructure and APIs needed for the realtime communication layer of your application. Work on your app's logic and let PubNub handle sending and receiving data across the world in less than 100ms.

The SDK supports PHP 7.4 and 8.x.
The SDK supports PHP 8.1 and greater

## Get keys

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"test": "./vendor/bin/phpunit tests/ --verbose --coverage-clover=coverage.clover"
},
"require": {
"php": "^7.4|>=8.0",
"php": ">=8.1",
"rmccue/requests": "^2.0",
"psr/log": "^1.1|^2.0|^3.0"
},
Expand Down
Loading