File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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 />
Original file line number Diff line number Diff line change 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 ' ,
Original file line number Diff line number Diff line change 11{
22 pkgs ? import <nixpkgs> { }
3- , phpPkgs ? import ( fetchTarball "https://github.com/piotrkwiecinski/nixpkgs/archive/1c614d75004b9eb1ecda6ddeb959c4f544403de5.tar.gz" ) { }
43 , phpVersion ? "php82"
54} :
65
76let
8- php = phpPkgs . ${ phpVersion } . buildEnv {
7+ php = pkgs . ${ phpVersion } . buildEnv {
98 extensions = { enabled , all } : enabled ++ ( with all ; [
109 xdebug
1110 ] ) ;
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" ;
You can’t perform that action at this time.
0 commit comments