Skip to content

Commit 0e95d2a

Browse files
committed
Updated dependencies
1 parent 1a798e7 commit 0e95d2a

3 files changed

Lines changed: 9 additions & 10 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
php:
24-
- 8.3
2524
- 8.4
2625
- 8.5
2726
symfony:
@@ -32,7 +31,7 @@ jobs:
3231
name: 'PHP ${{ matrix.php }} + Symfony ${{ matrix.symfony }} + ${{ matrix.dependencies }} dependencies'
3332
steps:
3433
- name: Checkout code
35-
uses: actions/checkout@v4
34+
uses: actions/checkout@v6
3635

3736
- name: Setup PHP
3837
uses: shivammathur/setup-php@v2
@@ -46,7 +45,7 @@ jobs:
4645
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
4746

4847
- name: Cache dependencies
49-
uses: actions/cache@v4
48+
uses: actions/cache@v5
5049
with:
5150
path: ${{ steps.composer-cache.outputs.dir }}
5251
key: ${{ runner.os }}-php-${{ matrix.php }}-symfony-${{ matrix.symfony }}-composer-${{ hashFiles('**/composer.json **/composer.lock') }}

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"source": "https://github.com/protung/easyadmin-plus-bundle"
2525
},
2626
"require": {
27-
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
27+
"php": "~8.4.0 || ~8.5.0",
2828
"ext-dom": "*",
2929
"azjezz/psl": "^2.9.1 || ^3.0.0 || ^4.0.0",
3030
"easycorp/easyadmin-bundle": "~4.27.7",
@@ -47,14 +47,14 @@
4747
},
4848
"require-dev": {
4949
"doctrine/coding-standard": "^14.0.0",
50-
"ergebnis/composer-normalize": "^2.48.2",
50+
"ergebnis/composer-normalize": "^2.50.0",
5151
"php-standard-library/psalm-plugin": "^2.3.0",
52-
"phpunit/phpunit": "^11.5.46",
52+
"phpunit/phpunit": "^12.5.14",
5353
"psalm/plugin-phpunit": "^0.19.5",
54-
"psalm/plugin-symfony": "^5.2.7",
54+
"psalm/plugin-symfony": "^5.3.0",
5555
"speicher210/functional-test-bundle": "2.x-dev",
5656
"symfony/var-exporter": "^6.4 || ^7.4",
57-
"vimeo/psalm": "^6.14.1"
57+
"vimeo/psalm": "^6.15.1"
5858
},
5959
"suggest": {
6060
"speicher210/functional-test-bundle": "For testing support."

tests/Resources/Views/Crud/Field/JsonFieldTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
namespace Protung\EasyAdminPlusBundle\Tests\Resources\Views\Crud\Field;
66

77
use Generator;
8+
use PHPUnit\Framework\Attributes\DataProvider;
89
use Protung\EasyAdminPlusBundle\Field\JsonField;
910
use Speicher210\FunctionalTestBundle\Test\Twig\TemplateTestCase;
1011

@@ -69,9 +70,8 @@ public function templatePath(): string
6970

7071
/**
7172
* @param array<mixed> $context
72-
*
73-
* @dataProvider dataProviderTestOutput
7473
*/
74+
#[DataProvider('dataProviderTestOutput')]
7575
public function testOutput(array $context): void
7676
{
7777
$actualTemplate = JsonField::new('test')->getAsDto()->getTemplatePath();

0 commit comments

Comments
 (0)