Skip to content

Commit 9ed839a

Browse files
committed
[TASK] Enable tests for PHP 8.5
1 parent 2e7625e commit 9ed839a

4 files changed

Lines changed: 8 additions & 9 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ jobs:
135135
- name: Run Unit Tests PHP8.4
136136
run: nix-shell --arg phpVersion \"php84\" --pure --run project-test-unit
137137

138-
# - name: Run Unit Tests PHP8.5
139-
# run: nix-shell --arg phpVersion \"php85\" --pure --run project-test-unit
138+
- name: Run Unit Tests PHP8.5
139+
run: nix-shell --arg phpVersion \"php85\" --pure --run project-test-unit
140140

141141
- name: Run Functional Tests PHP8.2
142142
run: nix-shell --arg phpVersion \"php82\" --pure --run project-test-functional
@@ -147,6 +147,6 @@ jobs:
147147
- name: Run Functional Tests PHP8.4
148148
run: nix-shell --arg phpVersion \"php84\" --pure --run project-test-functional
149149

150-
# - name: Run Functional Tests PHP8.5
151-
# run: nix-shell --arg phpVersion \"php85\" --pure --run project-test-functional
150+
- name: Run Functional Tests PHP8.5
151+
run: nix-shell --arg phpVersion \"php85\" --pure --run project-test-functional
152152

Documentation/guides.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
interlink-shortcode="extcode/cart"
1212
/>
1313
<project title="Cart"
14-
release="11.7.1"
14+
release="11.7.2"
1515
version="11.7"
1616
copyright="2018 - 2025"
1717
/>

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
'title' => 'Cart',
55
'description' => 'Shopping Cart(s) for TYPO3',
66
'category' => 'plugin',
7-
'version' => '11.7.1',
7+
'version' => '11.7.2',
88
'state' => 'stable',
99
'author' => 'Daniel Gohlke',
1010
'author_email' => 'ext@extco.de',

shell.nix

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
{
22
pkgs ? import <nixpkgs> { }
3-
,phpPkgs ? import (fetchTarball "https://github.com/piotrkwiecinski/nixpkgs/archive/1c614d75004b9eb1ecda6ddeb959c4f544403de5.tar.gz") {}
43
,phpVersion ? "php82"
54
}:
65

76
let
8-
php = phpPkgs.${phpVersion}.buildEnv {
7+
php = pkgs.${phpVersion}.buildEnv {
98
extensions = { enabled, all }: enabled ++ (with all; [
109
xdebug
1110
]);
@@ -15,7 +14,7 @@ let
1514
memory_limit = 4G
1615
'';
1716
};
18-
inherit(phpPkgs."${phpVersion}Packages") composer;
17+
inherit(pkgs."${phpVersion}Packages") composer;
1918

2019
projectInstall = pkgs.writeShellApplication {
2120
name = "project-install";

0 commit comments

Comments
 (0)