Skip to content

Commit f150219

Browse files
committed
chore(release): 1.1.6
1 parent 25bb92e commit f150219

25 files changed

Lines changed: 972 additions & 778 deletions

.github/workflows/lint.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
php: [ '8.2', '8.3' ]
10+
php: [ '8.2', '8.3', '8.4', '8.5' ]
1111

1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515

1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2
@@ -23,7 +23,7 @@ jobs:
2323
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
2424

2525
- name: Cache dependencies installed with composer
26-
uses: actions/cache@v2
26+
uses: actions/cache@v4
2727
with:
2828
path: ${{ env.COMPOSER_CACHE_DIR }}
2929
key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
php: [ '8.2', '8.3' ]
10+
php: [ '8.2', '8.3', '8.4', '8.5' ]
1111

1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515

1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2
@@ -23,7 +23,7 @@ jobs:
2323
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
2424

2525
- name: Cache dependencies installed with composer
26-
uses: actions/cache@v2
26+
uses: actions/cache@v4
2727
with:
2828
path: ${{ env.COMPOSER_CACHE_DIR }}
2929
key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@
2727
],
2828
"minimum-stability": "stable",
2929
"require-dev": {
30-
"phpstan/phpstan": "^1.8",
31-
"squizlabs/php_codesniffer": "^3.7",
32-
"symplify/easy-coding-standard": "^11.0",
33-
"symfony/var-dumper": "^6.1|^7.0",
34-
"rector/rector": "^1.2",
35-
"phpunit/phpunit": "^10|^11.5"
30+
"symfony/var-dumper": "^7.0|^8.0",
31+
"rector/rector": "^2.3",
32+
"phpstan/phpstan": "^2.1",
33+
"phpunit/phpunit": "^13.0",
34+
"symplify/easy-coding-standard": "^13.0",
35+
"phpstan/phpstan-phpunit": "^2.0"
3636
},
3737
"require": {
3838
"php": ">=8.2",
39-
"symfony/http-client": "^6.1|^7.0",
40-
"symfony/serializer": "^6.1|^7.0",
41-
"symfony/property-access": "^6.1|^7.0",
39+
"symfony/http-client": "^7.0|^8.0",
40+
"symfony/serializer": "^7.0|^8.0",
41+
"symfony/property-access": "^7.0|^8.0",
4242
"webmozart/assert": "^1.11"
4343
}
4444
}

0 commit comments

Comments
 (0)