mirror of
https://github.com/Codappix/typo3-php-datasets.git
synced 2024-12-05 02:56:11 +01:00
Add PHP 7.2 support (#5)
This commit is contained in:
parent
ae33eeddc9
commit
94be69a307
3 changed files with 15 additions and 3 deletions
8
.github/workflows/ci.yaml
vendored
8
.github/workflows/ci.yaml
vendored
|
@ -29,6 +29,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
php-version:
|
php-version:
|
||||||
|
- 7.2
|
||||||
- 7.3
|
- 7.3
|
||||||
- 7.4
|
- 7.4
|
||||||
- 8.0
|
- 8.0
|
||||||
|
@ -64,7 +65,7 @@ jobs:
|
||||||
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Install xmllint
|
- name: Install xmllint
|
||||||
run: sudo apt-get install libxml2-utils
|
run: sudo apt update && sudo apt install libxml2-utils
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: composer install --prefer-dist --no-progress
|
run: composer install --prefer-dist --no-progress
|
||||||
|
@ -99,6 +100,9 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
|
- db-version: '5.7'
|
||||||
|
php-version: '7.2'
|
||||||
|
typo3-version: '^10.4'
|
||||||
- db-version: '5.7'
|
- db-version: '5.7'
|
||||||
php-version: '7.3'
|
php-version: '7.3'
|
||||||
typo3-version: '^10.4'
|
typo3-version: '^10.4'
|
||||||
|
@ -159,6 +163,8 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
|
- php-version: '7.2'
|
||||||
|
typo3-version: '^10.4'
|
||||||
- php-version: '7.3'
|
- php-version: '7.3'
|
||||||
typo3-version: '^10.4'
|
typo3-version: '^10.4'
|
||||||
- php-version: '7.4'
|
- php-version: '7.4'
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v1.2.0 - 2023-05-04
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Add PHP 7.2 support.
|
||||||
|
|
||||||
## v1.1.0 - 2023-04-12
|
## v1.1.0 - 2023-04-12
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
"bin/typo3-php-datasets"
|
"bin/typo3-php-datasets"
|
||||||
],
|
],
|
||||||
"require": {
|
"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",
|
"composer-runtime-api": "^2.2",
|
||||||
"doctrine/dbal": "^2.13",
|
"doctrine/dbal": "^2.13",
|
||||||
"symfony/console": "^5.4",
|
"symfony/console": "^5.4",
|
||||||
|
@ -33,7 +33,7 @@
|
||||||
"friendsofphp/php-cs-fixer": "^3.4",
|
"friendsofphp/php-cs-fixer": "^3.4",
|
||||||
"phpstan/phpstan": "^1.10",
|
"phpstan/phpstan": "^1.10",
|
||||||
"phpstan/phpstan-phpunit": "^1.3",
|
"phpstan/phpstan-phpunit": "^1.3",
|
||||||
"phpunit/phpunit": "^9.6",
|
"phpunit/phpunit": "^8.5 || ^9.6",
|
||||||
"typo3/testing-framework": "^6.16"
|
"typo3/testing-framework": "^6.16"
|
||||||
},
|
},
|
||||||
"extra": {
|
"extra": {
|
||||||
|
|
Loading…
Reference in a new issue