Skip to content

Commit 3d499d4

Browse files
php84
1 parent 702836e commit 3d499d4

File tree

4 files changed

+17
-16
lines changed

4 files changed

+17
-16
lines changed

.github/workflows/phpunit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ on:
66
jobs:
77
phpunit:
88
name: "PHPUnit"
9-
runs-on: "ubuntu-22.04"
9+
runs-on: "ubuntu-latest"
1010

1111
strategy:
1212
matrix:
1313
php-version:
14-
- "8.2"
14+
- "8.4"
1515
deps:
1616
- "normal"
1717

@@ -27,7 +27,7 @@ jobs:
2727
php-version: "${{ matrix.php-version }}"
2828

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

.github/workflows/static-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ on:
66
jobs:
77
phpstan:
88
name: "PHPStan"
9-
runs-on: "ubuntu-22.04"
9+
runs-on: "ubuntu-latest"
1010

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: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,26 @@
44
"type": "symfony-bundle",
55
"license": "MIT",
66
"require": {
7-
"php": "^8.2",
7+
"php": "^8.4",
88
"ext-json": "*",
9-
"guzzlehttp/guzzle": "^6.0 || ^7.0",
9+
"guzzlehttp/guzzle": "^7.8.2",
10+
"guzzlehttp/psr7": "^2.6",
1011
"psr/log": "^1.1||^2.0||^3.0",
11-
"symfony/http-kernel": "^6.1|^7.0",
12-
"symfony/property-info": "^6.1|^7.0",
13-
"symfony/serializer": "^6.1|^7.0",
12+
"symfony/http-kernel": "^7.0",
13+
"symfony/property-info": "^7.0",
14+
"symfony/serializer": "^7.0",
1415
"symfony/serializer-pack": "^1.3",
1516
"webmozart/assert": "^1.11"
1617
},
1718
"require-dev": {
1819
"friendsofphp/php-cs-fixer": "^3.64",
1920
"phpro/grumphp": "^2.8",
20-
"phpstan/phpstan": "^1.12",
21+
"phpstan/phpstan": "^2.1",
2122
"matthiasnoback/symfony-config-test": "^5.2",
22-
"phpstan/phpstan-webmozart-assert": "^1.2",
23-
"phpunit/phpunit": "^10.5",
23+
"phpstan/phpstan-webmozart-assert": "^2.0",
24+
"phpunit/phpunit": "^10.5.27",
2425
"roave/security-advisories": "dev-master",
25-
"symfony/phpunit-bridge": "6.2.*|^7.0"
26+
"symfony/phpunit-bridge": "^7.0.3"
2627
},
2728
"autoload": {
2829
"psr-4": {

src/DependencyInjection/AnswearBoxNowExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
class AnswearBoxNowExtension extends Extension implements PrependExtensionInterface
1818
{
19-
private ?Definition $loggerDefinition;
19+
private Definition $loggerDefinition;
2020
private array $config;
2121

2222
public function prepend(ContainerBuilder $container): void

0 commit comments

Comments
 (0)