Skip to content

Commit ce178a5

Browse files
committed
Update supported versions up to php 8.4 #222
Also update dependencies
1 parent 60047ce commit ce178a5

File tree

6 files changed

+394
-330
lines changed

6 files changed

+394
-330
lines changed

.github/workflows/php.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: ['ubuntu-latest']
15-
php: ['8.1', '8.2', '8.3']
16-
continue-on-error: ${{ matrix.php == '8.3' }}
15+
php: ['8.1', '8.2', '8.3', '8.4']
16+
continue-on-error: ${{ matrix.php == '8.4' }}
1717
steps:
1818
- uses: actions/checkout@v4
1919

@@ -27,15 +27,15 @@ jobs:
2727
run: composer validate
2828

2929
- name: Install dependencies
30-
if: ${{ matrix.php != '8.3' }}
30+
if: ${{ matrix.php != '8.4' }}
3131
uses: nick-invision/retry@v2
3232
with:
3333
timeout_minutes: 5
3434
max_attempts: 3
3535
command: composer update --no-interaction --no-progress
3636

3737
- name: Install Dependencies (ignore platform)
38-
if: ${{ matrix.php == '8.3' }}
38+
if: ${{ matrix.php == '8.4' }}
3939
uses: nick-invision/retry@v2
4040
with:
4141
timeout_minutes: 5

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ $ composer require scn/evalanche-soap-api-connector
1717
| Connector-Version/Branch | PHP-Version(s) |
1818
|--------------------------|-------------------------|
1919
| 1.x | 7.2, 7.3, 7.4, 8.0, 8.1 |
20-
| master | 8.1, 8.2 |
20+
| master | 8.1, 8.2, 8.3, 8.4 |
2121

2222
## Usage
2323

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
"require-dev": {
3232
"phpunit/phpunit": "^10",
3333
"friendsofphp/php-cs-fixer": "^3.0",
34-
"phpstan/phpstan": "^1.4",
35-
"phpstan/phpstan-strict-rules": "^1.1"
34+
"phpstan/phpstan": "^2",
35+
"phpstan/phpstan-strict-rules": "^2"
3636
},
3737
"autoload": {
3838
"psr-4": {

0 commit comments

Comments
 (0)