Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,35 @@ on:
push:
branches:
- master
- epv-phpbb4
pull_request:
branches:
- master
- epv-phpbb4

jobs:
php-tests:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- php: '7.2'
- php: '7.3'
- php: '7.4'
- php: '8.0'
- php: '8.1'
- php: '8.2'
- php: '8.3'
- php: '8.4'
- php: '8.5'

name: PHP ${{ matrix.php }}

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Mark repo safe for git
run: |
git config --global --add safe.directory /github/workspace
git config --global --add safe.directory /tmp/composer-cache
git config --global --add safe.directory /app

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "phpbb/epv",
"description": "A extension validator for phpBB extensions. Extensions are required to pass the validator when submitted to the extension database.",
"description": "An extension validator for phpBB extensions. Extensions are required to pass the validator when submitted to the extension database.",
"license": "GPL-2.0-only",
"authors": [
{
Expand All @@ -10,19 +10,19 @@
],
"minimum-stability": "stable",
"require": {
"php": ">=7.2",
"php": ">=8.2",
"ext-json": "*",
"symfony/yaml": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/console": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/finder": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/process": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"nikic/php-parser": "^4.0",
"symfony/yaml": "^7.4",
"symfony/console": "^7.4",
"symfony/finder": "^7.4",
"symfony/process": "^7.4",
"nikic/php-parser": "^4.0 || ^5.0",
"gitonomy/gitlib": "^1.3.0",
"sensiolabs/ansi-to-html": "~1.1",
"composer/composer": "^1.5 || ^2.0"
"composer/composer": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
"phpunit/phpunit": "^9.0 || ^10.0"
},
"bin": [
"src/EPV.php"
Expand Down
Loading