Skip to content

Commit b6d518a

Browse files
committed
Commit to phpBB4 and PHP 8.2
1 parent 23528dd commit b6d518a

18 files changed

+1343
-1520
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,22 @@ on:
44
push:
55
branches:
66
- master
7+
- epv-phpbb4
78
pull_request:
89
branches:
910
- master
11+
- epv-phpbb4
1012

1113
jobs:
1214
php-tests:
1315
runs-on: ubuntu-latest
1416
strategy:
1517
matrix:
1618
include:
17-
- php: '7.2'
18-
- php: '7.3'
19-
- php: '7.4'
20-
- php: '8.0'
21-
- php: '8.1'
2219
- php: '8.2'
2320
- php: '8.3'
2421
- php: '8.4'
22+
- php: '8.5'
2523

2624
name: PHP ${{ matrix.php }}
2725

@@ -48,9 +46,6 @@ jobs:
4846
path: /tmp/composer-cache
4947
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
5048

51-
- name: Delete composer.lock (library mode)
52-
run: rm -f composer.lock
53-
5449
- name: Install Composer dependencies
5550
uses: php-actions/composer@v6
5651
with:

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "phpbb/epv",
3-
"description": "A extension validator for phpBB extensions. Extensions are required to pass the validator when submitted to the extension database.",
3+
"description": "An extension validator for phpBB extensions. Extensions are required to pass the validator when submitted to the extension database.",
44
"license": "GPL-2.0-only",
55
"authors": [
66
{
@@ -10,19 +10,19 @@
1010
],
1111
"minimum-stability": "stable",
1212
"require": {
13-
"php": ">=7.2",
13+
"php": ">=8.2",
1414
"ext-json": "*",
15-
"symfony/yaml": "^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
16-
"symfony/console": "^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
17-
"symfony/finder": "^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
18-
"symfony/process": "^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
15+
"symfony/yaml": "^7.4",
16+
"symfony/console": "^7.4",
17+
"symfony/finder": "^7.4",
18+
"symfony/process": "^7.4",
1919
"nikic/php-parser": "^4.0 || ^5.0",
2020
"gitonomy/gitlib": "^1.3.0",
2121
"sensiolabs/ansi-to-html": "~1.1",
22-
"composer/composer": "^1.5 || ^2.0"
22+
"composer/composer": "^2.0"
2323
},
2424
"require-dev": {
25-
"phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
25+
"phpunit/phpunit": "^9.0 || ^10.0"
2626
},
2727
"bin": [
2828
"src/EPV.php"

0 commit comments

Comments
 (0)