diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index d1057e85..23b27d08 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -135,8 +135,8 @@ jobs:
- name: Run Unit Tests PHP8.4
run: nix-shell --arg phpVersion \"php84\" --pure --run project-test-unit
-# - name: Run Unit Tests PHP8.5
-# run: nix-shell --arg phpVersion \"php85\" --pure --run project-test-unit
+ - name: Run Unit Tests PHP8.5
+ run: nix-shell --arg phpVersion \"php85\" --pure --run project-test-unit
- name: Run Functional Tests PHP8.2
run: nix-shell --arg phpVersion \"php82\" --pure --run project-test-functional
@@ -147,6 +147,6 @@ jobs:
- name: Run Functional Tests PHP8.4
run: nix-shell --arg phpVersion \"php84\" --pure --run project-test-functional
-# - name: Run Functional Tests PHP8.5
-# run: nix-shell --arg phpVersion \"php85\" --pure --run project-test-functional
+ - name: Run Functional Tests PHP8.5
+ run: nix-shell --arg phpVersion \"php85\" --pure --run project-test-functional
diff --git a/Documentation/guides.xml b/Documentation/guides.xml
index 9fc7b538..3ce88ac9 100644
--- a/Documentation/guides.xml
+++ b/Documentation/guides.xml
@@ -11,7 +11,7 @@
interlink-shortcode="extcode/cart"
/>
diff --git a/ext_emconf.php b/ext_emconf.php
index 76778a1a..a71cd715 100644
--- a/ext_emconf.php
+++ b/ext_emconf.php
@@ -4,7 +4,7 @@
'title' => 'Cart',
'description' => 'Shopping Cart(s) for TYPO3',
'category' => 'plugin',
- 'version' => '11.7.1',
+ 'version' => '11.7.2',
'state' => 'stable',
'author' => 'Daniel Gohlke',
'author_email' => 'ext@extco.de',
diff --git a/shell.nix b/shell.nix
index 62da0107..c0a30c3b 100644
--- a/shell.nix
+++ b/shell.nix
@@ -1,11 +1,10 @@
{
pkgs ? import { }
- ,phpPkgs ? import (fetchTarball "https://github.com/piotrkwiecinski/nixpkgs/archive/1c614d75004b9eb1ecda6ddeb959c4f544403de5.tar.gz") {}
,phpVersion ? "php82"
}:
let
- php = phpPkgs.${phpVersion}.buildEnv {
+ php = pkgs.${phpVersion}.buildEnv {
extensions = { enabled, all }: enabled ++ (with all; [
xdebug
]);
@@ -15,7 +14,7 @@ let
memory_limit = 4G
'';
};
- inherit(phpPkgs."${phpVersion}Packages") composer;
+ inherit(pkgs."${phpVersion}Packages") composer;
projectInstall = pkgs.writeShellApplication {
name = "project-install";