Skip to content

Commit e997b45

Browse files
committed
Drop PHP 8.0 support
Related: wintercms/storm@78f58d1
1 parent b2d803a commit e997b45

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/code-quality.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Install PHP and PHP Code Sniffer
2828
uses: shivammathur/setup-php@v2
2929
with:
30-
php-version: 8.0
30+
php-version: 8.2
3131
extensions: curl, fileinfo, gd, mbstring, openssl, pdo, pdo_sqlite, sqlite3, xml, zip
3232
tools: phpcs
3333

.github/workflows/manifest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Update manifest
1212
runs-on: ubuntu-latest
1313
env:
14-
phpVersion: '8.1'
14+
phpVersion: '8.2'
1515
extensions: curl, fileinfo, gd, mbstring, openssl, pdo, pdo_sqlite, sqlite3, xml, zip
1616
key: winter-cms-cache-develop
1717
steps:

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
max-parallel: 8
9797
matrix:
9898
operatingSystem: [ubuntu-latest, windows-latest]
99-
phpVersion: ['8.0', '8.1', '8.2', '8.3']
99+
phpVersion: ['8.1', '8.2', '8.3']
100100
fail-fast: false
101101
runs-on: ${{ matrix.operatingSystem }}
102102
name: ${{ matrix.operatingSystem }} / PHP ${{ matrix.phpVersion }}

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"source": "https://github.com/wintercms/winter"
3030
},
3131
"require": {
32-
"php": "^8.0.2",
32+
"php": ">=8.1",
3333
"winter/storm": "dev-develop as 1.2",
3434
"winter/wn-system-module": "dev-develop",
3535
"winter/wn-backend-module": "dev-develop",

modules/backend/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
}
2424
],
2525
"require": {
26-
"php": "^8.0.2",
26+
"php": ">=8.1",
2727
"composer/installers": "~1.11.0",
2828
"laravel/framework": "^9.1"
2929
},

modules/cms/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
}
2424
],
2525
"require": {
26-
"php": "^8.0.2",
26+
"php": ">=8.1",
2727
"composer/installers": "~1.11.0",
2828
"laravel/framework": "^9.1"
2929
},

modules/system/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
}
2424
],
2525
"require": {
26-
"php": "^8.0.2",
26+
"php": ">=8.1",
2727
"composer/installers": "~1.11.0",
2828
"laravel/framework": "^9.1",
2929
"composer/semver": "^3.2"

0 commit comments

Comments
 (0)