Skip to content

Commit

Permalink
chore: drop support for PHP 7.4
Browse files Browse the repository at this point in the history
gravatarphp/gravatar: Support for PHP 8 is merged but unreleased

Signed-off-by: Daniel Kesselberg <[email protected]>
  • Loading branch information
kesselb committed Jan 17, 2023
1 parent 22c9c6c commit 8baba6e
Show file tree
Hide file tree
Showing 8 changed files with 472 additions and 219 deletions.
3 changes: 2 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
CHANGELOG.md merge=union
/CHANGELOG.md merge=union
/vendor-bin/**/composer.lock binary
5 changes: 1 addition & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.4', '8.0', '8.1', '8.2']
php-versions: ['8.0', '8.1', '8.2']
nextcloud-versions: ['master']
include:
- php-versions: 8.0
Expand Down Expand Up @@ -60,9 +60,6 @@ jobs:
nextcloud-versions: ['master']
db: ['sqlite', 'mysql', 'pgsql']
include:
- php-versions: 7.4
nextcloud-versions: stable25
db: 'mysql'
- php-versions: 8.1
nextcloud-versions: master
db: 'pgsql'
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<repository type="git">https://github.com/nextcloud/mail.git</repository>
<screenshot>https://user-images.githubusercontent.com/1374172/79554966-278e1600-809f-11ea-82ea-7a0d72a2704f.png</screenshot>
<dependencies>
<php min-version="7.4" max-version="8.1" />
<php min-version="8.0" max-version="8.2" />
<nextcloud min-version="25" max-version="26" />
</dependencies>
<background-jobs>
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"config": {
"platform": {
"php": "7.4"
"php": "8.0"
},
"sort-packages": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"require": {
"php": ">=7.4 <=8.1",
"php": ">=8.0 <=8.2",
"ext-openssl": "*",
"arthurhoaro/favicon": "^1.2",
"bamarni/composer-bin-plugin": "^1.4",
Expand All @@ -29,7 +29,7 @@
"christophwurst/kitinerary-flatpak": "^0.3",
"christophwurst/kitinerary-sys": "^0.2.0",
"ezyang/htmlpurifier": "4.16.0",
"gravatarphp/gravatar": "^2.0",
"gravatarphp/gravatar": "dev-master#6b9f6a45477ce48285738d9d0c3f0dbf97abe263",
"html2text/html2text": "^4.3",
"nextcloud/horde-managesieve": "^1.0",
"nextcloud/horde-smtp": "^1.0",
Expand Down
Loading

0 comments on commit 8baba6e

Please sign in to comment.