Skip to content

Commit 22233de

Browse files
Merge pull request #14 from answear/php84
php 8.4
1 parent ef44437 commit 22233de

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

.github/workflows/phpunit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
php-version:
14-
- "8.2"
14+
- "8.4"
1515
deps:
1616
- "normal"
1717
- "low"
@@ -28,7 +28,7 @@ jobs:
2828
php-version: "${{ matrix.php-version }}"
2929

3030
- name: "Cache dependencies installed with composer"
31-
uses: "actions/cache@v2"
31+
uses: "actions/cache@v4"
3232
with:
3333
path: "~/.composer/cache"
3434
key: "php-${{ matrix.php-version }}-composer-locked-${{ hashFiles('composer.lock') }}"

.github/workflows/static-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
php-version:
14-
- "8.2"
14+
- "8.4"
1515
steps:
1616
- name: "Checkout"
1717
uses: "actions/checkout@v2"
@@ -24,7 +24,7 @@ jobs:
2424
php-version: "${{ matrix.php-version }}"
2525

2626
- name: "Cache dependencies installed with composer"
27-
uses: "actions/cache@v2"
27+
uses: "actions/cache@v4"
2828
with:
2929
path: "~/.composer/cache"
3030
key: "php-${{ matrix.php-version }}-composer-locked-${{ hashFiles('composer.lock') }}"

composer.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,21 @@
44
"type": "symfony-bundle",
55
"license": "MIT",
66
"require": {
7-
"php": "^8.2",
7+
"php": "^8.4",
88
"ext-simplexml": "*",
9-
"guzzlehttp/guzzle": "^6.0|^7.0",
10-
"symfony/http-kernel": "^6.4|^7.0",
9+
"guzzlehttp/guzzle": "^7.8.2",
10+
"guzzlehttp/psr7": "^2.6",
11+
"symfony/http-kernel": "^7.0.3",
1112
"webmozart/assert": "^1.11"
1213
},
1314
"require-dev": {
1415
"friendsofphp/php-cs-fixer": "^3.64",
15-
"phpstan/phpstan": "^1.12",
16-
"phpstan/phpstan-webmozart-assert": "^1.2",
17-
"phpro/grumphp": "^2.6",
18-
"phpunit/phpunit": "^10.5",
16+
"phpstan/phpstan": "^2.1",
17+
"phpstan/phpstan-webmozart-assert": "^2.0",
18+
"phpro/grumphp": "^2.12",
19+
"phpunit/phpunit": "^10.5.27",
1920
"roave/security-advisories": "dev-master",
20-
"symfony/phpunit-bridge": "6.4|^7.0"
21+
"symfony/phpunit-bridge": "^7.0.3"
2122
},
2223
"autoload": {
2324
"psr-4": {

0 commit comments

Comments
 (0)