Skip to content

Commit

Permalink
Dropping support for PHP 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
escopecz committed Jul 16, 2024
1 parent 6463f65 commit fbadcd2
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/BUG-REPORT.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ body:
attributes:
label: PHP version
description: What PHP version are you using in your environment?
placeholder: ex. 8.0.20
placeholder: ex. 8.1.0
validations:
required: true
- type: dropdown
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
php-version: 8.0
php-version: 8.1
extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite, mysql, pdo_mysql

- name: Get tag name
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
php-version: 8.0
php-version: 8.1
extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite, mysql, pdo_mysql

- name: Download full installation package from previous step
Expand Down Expand Up @@ -244,7 +244,7 @@ jobs:
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
php-version: 8.0
php-version: 8.1
extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite, mysql, pdo_mysql

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

strategy:
matrix:
php-versions: ['8.0', '8.1', '8.2', '8.3']
php-versions: ['8.1', '8.2', '8.3']
db-types: ['mysql', 'mariadb']

name: PHPUnit ${{ matrix.php-versions }} ${{ matrix.db-types }}
Expand Down
2 changes: 1 addition & 1 deletion app/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
]
},
"require": {
"php": "~8.0",
"php": "~8.1",
"ext-zlib": "*",
"ext-zip": "*",
"ext-imap": "*",
Expand Down
4 changes: 2 additions & 2 deletions app/release_metadata.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"version": "5.1.0",
"stability": "stable",
"minimum_php_version": "8.0.2",
"minimum_php_version": "8.1.0",
"maximum_php_version": "8.3.99",
"minimum_mysql_version": "5.7.14",
"minimum_mariadb_version": "10.2.7",
"show_php_version_warning_if_under": "8.0.2",
"show_php_version_warning_if_under": "8.1.0",
"minimum_mautic_version": "4.4.10",
"announcement_url": "https://github.com/mautic/mautic/releases/tag/5.1.0"
}
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
},
"config": {
"platform": {
"php": "8.0.2"
"php": "8.1.0"
},
"bin-dir": "bin",
"component-dir": "media/assets",
Expand Down

0 comments on commit fbadcd2

Please sign in to comment.