Add PHP 7.2 support (#5)

This commit is contained in:
Daniel Siepmann 2023-05-04 15:18:45 +02:00 committed by GitHub
parent ae33eeddc9
commit 94be69a307
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 3 deletions

View file

@ -29,6 +29,7 @@ jobs:
strategy:
matrix:
php-version:
- 7.2
- 7.3
- 7.4
- 8.0
@ -64,7 +65,7 @@ jobs:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install xmllint
run: sudo apt-get install libxml2-utils
run: sudo apt update && sudo apt install libxml2-utils
- name: Install dependencies
run: composer install --prefer-dist --no-progress
@ -99,6 +100,9 @@ jobs:
strategy:
matrix:
include:
- db-version: '5.7'
php-version: '7.2'
typo3-version: '^10.4'
- db-version: '5.7'
php-version: '7.3'
typo3-version: '^10.4'
@ -159,6 +163,8 @@ jobs:
strategy:
matrix:
include:
- php-version: '7.2'
typo3-version: '^10.4'
- php-version: '7.3'
typo3-version: '^10.4'
- php-version: '7.4'

View file

@ -1,5 +1,11 @@
# Changelog
## v1.2.0 - 2023-05-04
### Added
- Add PHP 7.2 support.
## v1.1.0 - 2023-04-12
### Added

View file

@ -23,7 +23,7 @@
"bin/typo3-php-datasets"
],
"require": {
"php": "^7.3 || ^7.4 || ^8.0 || ^8.1 || ^8.2",
"php": "^7.2 || ^7.3 || ^7.4 || ^8.0 || ^8.1 || ^8.2",
"composer-runtime-api": "^2.2",
"doctrine/dbal": "^2.13",
"symfony/console": "^5.4",
@ -33,7 +33,7 @@
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9.6",
"phpunit/phpunit": "^8.5 || ^9.6",
"typo3/testing-framework": "^6.16"
},
"extra": {