Skip to content

Commit aa74984

Browse files
author
Robert Brodie
authored
Merge pull request #417 from swlodarski-sumoheavy/10.1.x-php-8.5
[#416] Add support for PHP 8.5
2 parents 4b3e22f + 55041c8 commit aa74984

10 files changed

Lines changed: 90 additions & 79 deletions

File tree

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818
- name: Run phpdoc
1919
run: |
2020
docker run --rm -v $(pwd):/data phpdoc/phpdoc:3 -d ./src -t ./docs

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ name: Test
33
on: [push, pull_request]
44

55
jobs:
6-
phpunit10:
6+
phpunit:
77
runs-on: ubuntu-latest
88

99
strategy:
1010
matrix:
11-
php-version: ["8.2", "8.3", "8.4"]
11+
php-version: ["8.2", "8.3", "8.4", "8.5"]
1212

1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515
- uses: php-actions/composer@v6
1616
with:
1717
php_version: ${{ matrix.php-version }}
@@ -22,15 +22,15 @@ jobs:
2222
php_version: ${{ matrix.php-version }}
2323
php_extensions: bcmath gmp xdebug
2424
testsuite: Unit
25-
version: 10
25+
version: 11.5
2626
env:
2727
XDEBUG_MODE: coverage
2828

2929
phpcs:
3030
runs-on: ubuntu-latest
3131

3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v6
3434
- uses: php-actions/composer@v6
3535
with:
3636
php_version: 8.2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To get up and running with our PHP library quickly, follow [the guide](https://d
1818

1919
### Requirements
2020

21-
- PHP version: 8.2 / 8.3 / 8.4
21+
- PHP version: 8.2 / 8.3 / 8.4 / 8.5
2222
- PHP extensions: json, reflection
2323

2424
## Unit Tests

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
],
1313
"homepage": "https://github.com/bitpay/php-bitpay-client-v2",
1414
"require": {
15-
"php": "^8.2 || ^8.3 || ^8.4",
15+
"php": "^8.2 || ^8.3 || ^8.4 || ^8.5",
1616
"ext-json": "*",
1717
"ext-reflection": "*",
1818
"bitpay/key-utils": "^2.1",

0 commit comments

Comments
 (0)