Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

2 changes: 1 addition & 1 deletion Documentation/guides.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
interlink-shortcode="extcode/cart"
/>
<project title="Cart"
release="11.7.1"
release="11.7.2"
version="11.7"
copyright="2018 - 2025"
/>
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
5 changes: 2 additions & 3 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
{
pkgs ? import <nixpkgs> { }
,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
]);
Expand All @@ -15,7 +14,7 @@ let
memory_limit = 4G
'';
};
inherit(phpPkgs."${phpVersion}Packages") composer;
inherit(pkgs."${phpVersion}Packages") composer;

projectInstall = pkgs.writeShellApplication {
name = "project-install";
Expand Down