Skip to content

Commit ab4ac77

Browse files
chore: Update dependencies (#4)
- Bump `guzzlehttp/guzzle` to version 7.10.0 - Update development dependencies: - `phpunit/phpunit` to version 12.5.2 - `phpstan/phpstan` to version 2.1.37 - `kint-php/kint` to version 6.1.0 - `monolog/monolog` to version 3.10.0 - `friendsofphp/php-cs-fixer` to version 3.93.0 - Adjust PHPStan configuration to use PHP 8.2.0 - Update GitHub Actions to use the latest versions of checkout and cache actions
1 parent 38cf57e commit ab4ac77

4 files changed

Lines changed: 719 additions & 598 deletions

File tree

.github/workflows/pull_request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
if: ${{ !github.event.pull_request.draft }}
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v6
2525

2626
- name: Install PHP ${{ env.PHP_VERSION }}
2727
uses: shivammathur/setup-php@v2
@@ -35,15 +35,15 @@ jobs:
3535
id: composer-cache
3636
run: |
3737
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
38-
- uses: actions/cache@v4
38+
- uses: actions/cache@v5
3939
with:
4040
path: ${{ steps.composer-cache.outputs.dir }}
4141
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
4242
restore-keys: |
4343
${{ runner.os }}-composer-
4444
4545
- name: Restore cache folder
46-
uses: actions/cache@v4
46+
uses: actions/cache@v5
4747
with:
4848
path: cache/
4949
key: ${{ runner.os }}-cache-folder-${{ hashFiles('cache/**') }}

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
"require": {
99
"php": "^8.2",
1010
"psr/http-client": "^1.0.3",
11-
"guzzlehttp/guzzle": "^7.9.2"
11+
"guzzlehttp/guzzle": "^7.10.0"
1212
},
1313
"require-dev": {
14-
"phpunit/phpunit": "^11.5.6",
15-
"phpstan/phpstan": "^2.1.2",
16-
"kint-php/kint": "^6.0.1",
17-
"monolog/monolog": "^3.8.1",
18-
"friendsofphp/php-cs-fixer": "^3.68.5",
14+
"phpunit/phpunit": "^12.5.2",
15+
"phpstan/phpstan": "^2.1.37",
16+
"kint-php/kint": "^6.1.0",
17+
"monolog/monolog": "^3.10.0",
18+
"friendsofphp/php-cs-fixer": "^3.93.0",
1919
"brainmaestro/composer-git-hooks": "^3.0.0"
2020
},
2121
"autoload": {

0 commit comments

Comments
 (0)