Skip to content

Commit

Permalink
Bump minimum PHP version requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsmith committed Oct 13, 2024
1 parent 924fdf9 commit f305448
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.1'
php-version: '7.2'
- name: Install Composer Dependencies
uses: ramsey/composer-install@v1
- name: Run PHP-CS-Fixer
Expand All @@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-18.04 ]
php: [ '7.1', '7.2', '7.3', '7.4', '8.0' ]
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
Expand All @@ -47,7 +47,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-18.04 ]
php: [ '7.1', '7.2', '7.3', '7.4', '8.0' ]
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

A PSR-15 request handler.

This package is installable and PSR-4 autoloadable via Composer as `"relay/relay": "~2.0"`.
This package is installable and PSR-4 autoloadable via Composer as `"relay/relay": "~3.0"`.

Alternatively, download a release or clone this repository, then map the `Relay\` namespace to the package `src/` directory.

This package requires PHP 7.1 or later. You should use the latest available version of PHP as a matter of principle.
This package requires PHP 7.2 or later. You should use the latest available version of PHP as a matter of principle.

To run the tests, issue `composer install` to install the test dependencies, then issue `./vendor/bin/phpunit`.

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 @@
}
],
"require": {
"php": ">=7.1",
"php": ">=7.2",
"psr/http-message": "~1.0",
"psr/http-server-handler": "~1.0",
"psr/http-server-middleware": "^1.0"
Expand Down

0 comments on commit f305448

Please sign in to comment.