Skip to content

Commit

Permalink
!chore: drop support for PHP 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Nov 27, 2023
1 parent b92c528 commit be95555
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
lint:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up PHP
Expand All @@ -20,10 +20,10 @@ jobs:
- name: lint
run: make lint
run-tests:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
phpversion: ['7.4', '8.0', '8.1', '8.2', '8.3']
phpversion: ['8.0', '8.1', '8.2', '8.3']
steps:
- uses: actions/checkout@v3
- name: set up PHP
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
run: ./bin/php-coveralls --coverage_clover=build/logs/clover.xml -v
docs:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,6 @@ For additional support, see our [org-wide support policy](https://github.com/Eas

## Development

**NOTE:** Recording VCR cassettes only works with PHP 7.4. Once recorded, tests can be run on PHP 7.4 or 8.0+.

```bash
# Install dependencies
make install
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
],
"require": {
"ext-json": "*",
"php": ">=7.4",
"php": ">=8.0",
"guzzlehttp/guzzle": "^7.5"
},
"require-dev": {
"allejo/php-vcr-sanitizer": "^1.0.9",
"php-coveralls/php-coveralls": "^2.5",
"php-vcr/php-vcr": "^1.5.5",
"php-vcr/php-vcr": "1.6.7",
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^3.7",
"roave/security-advisories": "dev-latest",
Expand Down
56 changes: 53 additions & 3 deletions test/cassettes/addresses/all.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit be95555

Please sign in to comment.