Skip to content

Commit ea95f7e

Browse files
committed
Bump minimum PHP-version
1 parent 5aa04e5 commit ea95f7e

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/php.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
php-version: ['8.1', '8.2', '8.3', '8.4']
22+
php-version: ['8.2', '8.3', '8.4']
2323

2424
uses: simplesamlphp/simplesamlphp-test-framework/.github/workflows/reusable_phplinter.yml@v1.10.0
2525
with:
@@ -45,7 +45,7 @@ jobs:
4545
fail-fast: false
4646
matrix:
4747
operating-system: [ubuntu-latest]
48-
php-versions: ['8.1', '8.2', '8.3', '8.4']
48+
php-versions: ['8.2', '8.3', '8.4']
4949

5050
steps:
5151
- name: Setup PHP, with composer and extensions
@@ -107,7 +107,7 @@ jobs:
107107
fail-fast: true
108108
matrix:
109109
operating-system: [windows-latest]
110-
php-versions: ['8.1', '8.2', '8.3', '8.4']
110+
php-versions: ['8.2', '8.3', '8.4']
111111

112112
steps:
113113
- name: Setup PHP, with composer and extensions
@@ -161,7 +161,7 @@ jobs:
161161
with:
162162
# Should be the higest supported version, so we can use the newest tools
163163
php-version: '8.4'
164-
tools: composer, composer-require-checker, composer-unused, phpcs
164+
tools: composer, composer-require-checker, composer-unused
165165
extensions: ctype, date, dom, filter, hash, mbstring, openssl, pcre, soap, spl, xml
166166
coverage: none
167167

@@ -193,7 +193,7 @@ jobs:
193193
run: composer-unused
194194

195195
- name: PHP Code Sniffer
196-
run: phpcs
196+
run: vendor/bin/phpcs
197197

198198
- name: PHPStan
199199
run: |
@@ -212,7 +212,7 @@ jobs:
212212
uses: shivammathur/setup-php@v2
213213
with:
214214
# Should be the lowest supported version
215-
php-version: '8.1'
215+
php-version: '8.2'
216216
extensions: ctype, date, dom, filter, hash, mbstring, openssl, pcre, soap, spl, xml
217217
tools: composer
218218
coverage: none

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919
],
2020
"require": {
21-
"php": "^8.1",
21+
"php": "^8.2",
2222
"ext-date": "*",
2323
"ext-dom": "*",
2424
"ext-filter": "*",
@@ -30,17 +30,17 @@
3030
"psr/clock": "~1.0.0",
3131
"psr/http-message": "~2.0",
3232
"psr/log": "~2.3.1 || ~3.0.0",
33-
"simplesamlphp/assert": "~1.8.2",
34-
"simplesamlphp/xml-common": "~2.0.1",
35-
"simplesamlphp/xml-security": "~2.0.0",
36-
"simplesamlphp/xml-soap": "~2.0.1"
33+
"simplesamlphp/assert": "~1.9.0",
34+
"simplesamlphp/xml-common": "~2.0.2",
35+
"simplesamlphp/xml-security": "~2.0.1",
36+
"simplesamlphp/xml-soap": "~2.0.2"
3737
},
3838
"require-dev": {
3939
"ext-intl": "*",
4040

4141
"beste/clock": "~3.0.0",
4242
"mockery/mockery": "~1.6.12",
43-
"simplesamlphp/simplesamlphp-test-framework": "~1.9.3"
43+
"simplesamlphp/simplesamlphp-test-framework": "~1.10.2"
4444
},
4545
"suggest": {
4646
"ext-soap": "*"

0 commit comments

Comments
 (0)