Skip to content

Commit

Permalink
Merge pull request phpbb#6527 from marc1706/ticket/16877
Browse files Browse the repository at this point in the history
[ticket/16877] Use replacement library for oauth
  • Loading branch information
marc1706 committed Oct 10, 2023
2 parents ac76b80 + 4513d1c commit e071cd8
Show file tree
Hide file tree
Showing 11 changed files with 225 additions and 214 deletions.
34 changes: 15 additions & 19 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,28 +92,26 @@ jobs:
strategy:
matrix:
include:
- php: '7.1'
- php: '7.2'
db: "mariadb:10.1"
- php: '7.1'
- php: '7.2'
db: "mariadb:10.2"
- php: '7.1'
- php: '7.2'
db: "mariadb:10.3"
- php: '7.1'
- php: '7.2'
db: "mariadb:10.4"
- php: '7.1'
- php: '7.2'
db: "mariadb:10.5"
- php: '7.1'
- php: '7.2'
db: "mysql:5.6"
db_alias: "MySQL Slow Tests"
SLOWTESTS: 1
- php: '7.1'
- php: '7.2'
db: "mysql:5.6"
db_alias: "MyISAM Tests"
MYISAM: 1
- php: '7.1'
- php: '7.2'
db: "mysql:5.6"
- php: '7.1'
db: "mysql:5.7"
- php: '7.2'
db: "mysql:5.7"
- php: '7.3'
Expand Down Expand Up @@ -233,20 +231,18 @@ jobs:
strategy:
matrix:
include:
- php: '7.1'
- php: '7.2'
db: "postgres:9.3"
- php: '7.1'
- php: '7.2'
db: "postgres:9.5"
- php: '7.1'
- php: '7.2'
db: "postgres:9.6"
- php: '7.1'
- php: '7.2'
db: "postgres:10"
- php: '7.1'
- php: '7.2'
db: "postgres:11"
- php: '7.1'
- php: '7.2'
db: "postgres:12"
- php: '7.1'
db: "postgres:13"
- php: '7.2'
db: "postgres:13"
- php: '7.3'
Expand Down Expand Up @@ -351,7 +347,7 @@ jobs:
strategy:
matrix:
include:
- php: '7.1'
- php: '7.2'
db: "sqlite3"
- php: '7.2'
db: "mcr.microsoft.com/mssql/server:2017-latest"
Expand Down
2 changes: 1 addition & 1 deletion phpBB/common.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/

/**
* Minimum Requirement: PHP 7.1.3
* Minimum Requirement: PHP 7.2.0
*/

if (!defined('IN_PHPBB'))
Expand Down
6 changes: 3 additions & 3 deletions phpBB/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@
"phpbb/phpbb-core": "self.version"
},
"require": {
"php": "^7.1.3 || ^8.0.0",
"php": "^7.2 || ^8.0.0",
"ext-json": "*",
"ext-mbstring": "*",
"bantu/ini-get-wrapper": "~1.0",
"carlos-mg89/oauth": "^0.8.15",
"composer/package-versions-deprecated": "^1.11",
"google/recaptcha": "~1.1",
"guzzlehttp/guzzle": "~6.3",
"lusitanian/oauth": "^0.8.1",
"marc1706/fast-image-size": "^1.1",
"s9e/text-formatter": "^2.0",
"symfony/config": "~3.4",
Expand Down Expand Up @@ -74,7 +74,7 @@
},
"config": {
"platform": {
"php": "7.1.3"
"php": "7.2"
},
"allow-plugins": {
"composer/installers": true
Expand Down
Loading

0 comments on commit e071cd8

Please sign in to comment.