mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-12-21 16:06:09 +01:00
Add PHP 8.4 Support (#120)
This commit is contained in:
parent
b83093e023
commit
102d03b1a0
4 changed files with 47 additions and 9 deletions
25
.github/workflows/ci.yaml
vendored
25
.github/workflows/ci.yaml
vendored
|
@ -15,7 +15,7 @@ jobs:
|
|||
- name: Install PHP
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: 8.3
|
||||
php-version: 8.4
|
||||
coverage: none
|
||||
tools: composer:v2
|
||||
env:
|
||||
|
@ -32,6 +32,7 @@ jobs:
|
|||
- 8.1
|
||||
- 8.2
|
||||
- 8.3
|
||||
- 8.4
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
@ -55,7 +56,7 @@ jobs:
|
|||
- name: Install PHP
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: "8.3"
|
||||
php-version: "8.4"
|
||||
coverage: none
|
||||
tools: composer:v2
|
||||
env:
|
||||
|
@ -84,7 +85,7 @@ jobs:
|
|||
- name: Install PHP
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: "8.2"
|
||||
php-version: "8.3"
|
||||
coverage: none
|
||||
tools: composer:v2
|
||||
env:
|
||||
|
@ -112,12 +113,18 @@ jobs:
|
|||
- db-version: '8'
|
||||
php-version: '8.3'
|
||||
typo3-version: '^12.4'
|
||||
- db-version: '8'
|
||||
php-version: '8.4'
|
||||
typo3-version: '^12.4'
|
||||
- db-version: '8'
|
||||
php-version: '8.2'
|
||||
typo3-version: '^13.3'
|
||||
typo3-version: '^13.4'
|
||||
- db-version: '8'
|
||||
php-version: '8.3'
|
||||
typo3-version: '^13.3'
|
||||
typo3-version: '^13.4'
|
||||
- db-version: '8'
|
||||
php-version: '8.4'
|
||||
typo3-version: '^13.4'
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
|
@ -166,10 +173,14 @@ jobs:
|
|||
typo3-version: '^12.4'
|
||||
- php-version: '8.3'
|
||||
typo3-version: '^12.4'
|
||||
- php-version: '8.4'
|
||||
typo3-version: '^12.4'
|
||||
- php-version: '8.2'
|
||||
typo3-version: '^13.3'
|
||||
typo3-version: '^13.4'
|
||||
- php-version: '8.3'
|
||||
typo3-version: '^13.3'
|
||||
typo3-version: '^13.4'
|
||||
- php-version: '8.4'
|
||||
typo3-version: '^13.4'
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
|
|
27
Documentation/Changelog/3.1.0.rst
Normal file
27
Documentation/Changelog/3.1.0.rst
Normal file
|
@ -0,0 +1,27 @@
|
|||
3.1.0
|
||||
=====
|
||||
|
||||
Breaking
|
||||
--------
|
||||
|
||||
Nothing
|
||||
|
||||
Features
|
||||
--------
|
||||
|
||||
* Add support for PHP 8.4.
|
||||
|
||||
Fixes
|
||||
-----
|
||||
|
||||
Nothing
|
||||
|
||||
Tasks
|
||||
-----
|
||||
|
||||
Nothing
|
||||
|
||||
Deprecation
|
||||
-----------
|
||||
|
||||
Nothing
|
|
@ -26,7 +26,7 @@
|
|||
}
|
||||
},
|
||||
"require": {
|
||||
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
|
||||
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
|
||||
"ext-mbstring": "*",
|
||||
"doctrine/dbal": "^2.12 || ^3.3 || ^4.0",
|
||||
"psr/http-message": "^1.0",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
}:
|
||||
|
||||
let
|
||||
php = phps.packages.x86_64-linux.php83.buildEnv {
|
||||
php = phps.packages.x86_64-linux.php84.buildEnv {
|
||||
extensions = { enabled, all }: enabled ++ (with all; [
|
||||
xdebug
|
||||
]);
|
||||
|
|
Loading…
Reference in a new issue