Skip to content

Unlock PHP 8 #47

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 1 commit into from
Jul 23, 2022
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Pusher API Client for PHP 7
# Pusher API Client for PHP 7 and 8

[![Linux Build Status](https://travis-ci.org/php-api-clients/pusher.svg?branch=master)](https://travis-ci.org/php-api-clients/pusher)
[![Latest Stable Version](https://poser.pugx.org/api-clients/pusher/v/stable.png)](https://packagist.org/packages/api-clients/pusher)
Expand All @@ -12,7 +12,7 @@
To install via [Composer](http://getcomposer.org/), use the command below, it will automatically detect the latest version and bind it with `^`.

```bash
composer require api-clients/pusher
composer require api-clients/pusher
```

# Usage
Expand Down
6 changes: 5 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
],
"require": {
"php": "^7.2",
"php": "^8 || ^7.2",
"api-clients/command-bus": "^2.0",
"clue/block-react": "^1.1",
"jean85/pretty-package-versions": "^1.0",
Expand Down Expand Up @@ -43,6 +43,10 @@
"sort-packages": true,
"platform": {
"php": "7.2"
},
"allow-plugins": {
"ocramius/package-versions": true,
"localheinz/composer-normalize": true
}
},
"extra": {
Expand Down
Loading