Skip to content

Commit 0f7f59c

Browse files
committed
Widen deps
1 parent 0749290 commit 0f7f59c

File tree

3 files changed

+16
-34
lines changed

3 files changed

+16
-34
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/build.yaml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ name: "build"
22
on:
33
push:
44
branches:
5-
- "0.1.x"
6-
- "0.2.x"
5+
- "0.*.x"
76
pull_request: ~
87
workflow_dispatch: ~
98

@@ -57,8 +56,10 @@ jobs:
5756
- "7.4"
5857
- "8.0"
5958
- "8.1"
59+
- "8.2"
6060

6161
dependencies:
62+
- "lowest"
6263
- "highest"
6364

6465
steps:
@@ -82,7 +83,7 @@ jobs:
8283
run: "composer-require-checker check --config-file=$(pwd)/composer-require-checker.json"
8384

8485
- name: "Run composer-unused/composer-unused"
85-
run: "composer-unused || true" # todo remove this when you warnings does not have a non zero exit code
86+
run: "composer-unused"
8687

8788
static-code-analysis:
8889
name: "Static Code Analysis"
@@ -95,8 +96,10 @@ jobs:
9596
- "7.4"
9697
- "8.0"
9798
- "8.1"
99+
- "8.2"
98100

99101
dependencies:
102+
- "lowest"
100103
- "highest"
101104

102105
steps:
@@ -129,6 +132,7 @@ jobs:
129132
- "7.4"
130133
- "8.0"
131134
- "8.1"
135+
- "8.2"
132136

133137
dependencies:
134138
- "lowest"
@@ -201,8 +205,7 @@ jobs:
201205
strategy:
202206
matrix:
203207
php-version:
204-
- "7.4"
205-
- "8.0"
208+
- "8.1"
206209

207210
dependencies:
208211
- "highest"
@@ -226,4 +229,4 @@ jobs:
226229
- name: "Run infection"
227230
run: "vendor/bin/infection"
228231
env:
229-
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
232+
STRYKER_DASHBOARD_API_KEY: "${{ secrets.STRYKER_DASHBOARD_API_KEY }}"

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@
1212
"require": {
1313
"php": ">=7.4",
1414
"ext-json": "*",
15-
"azjezz/psl": "^1.6",
15+
"azjezz/psl": "^1.6 || ^2.0",
1616
"psr/log": "^1.1 || ^2.0 || ^3.0",
17-
"symfony/options-resolver": "^4.4 || ^5.4 || ^6.0",
18-
"webmozart/assert": "^1.10"
17+
"symfony/options-resolver": "^4.4 || ^5.4 || ^6.0 || ^7.0",
18+
"webmozart/assert": "^1.11"
1919
},
2020
"require-dev": {
2121
"infection/infection": "^0.26",
22-
"php-standard-library/psalm-plugin": "^1.1",
23-
"phpunit/phpunit": "^9.5",
24-
"psalm/plugin-phpunit": "^0.17",
25-
"setono/code-quality-pack": "^2.2"
22+
"php-standard-library/psalm-plugin": "^1.1 || ^2.0",
23+
"phpunit/phpunit": "^9.6",
24+
"psalm/plugin-phpunit": "^0.18",
25+
"setono/code-quality-pack": "^2.7"
2626
},
2727
"prefer-stable": true,
2828
"autoload": {

0 commit comments

Comments
 (0)