Skip to content

Commit a1df68f

Browse files
committed
Fixes
1 parent f68bc36 commit a1df68f

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"require-dev": {
3131
"clue/phar-composer": "^1.4",
3232
"phpstan/phpstan": "^2.1",
33-
"phpunit/phpunit": "^11|^12.1"
33+
"phpunit/phpunit": "^11|^12.2"
3434
},
3535
"suggest": {
3636
"ext-apcu": "Required for the APCu dashboard.",

index.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
ini_set('display_startup_errors', 'On');
1818
error_reporting(E_ALL);
1919

20+
if (getenv('PCA_PHP_MEMORY_LIMIT')) {
21+
ini_set('memory_limit', getenv('PCA_PHP_MEMORY_LIMIT'));
22+
}
23+
2024
$path = __DIR__.'/';
2125

2226
if (is_file(__DIR__.'/vendor/autoload.php')) {

predis.phar

179 KB
Binary file not shown.

0 commit comments

Comments
 (0)