We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f68bc36 commit a1df68fCopy full SHA for a1df68f
composer.json
@@ -30,7 +30,7 @@
30
"require-dev": {
31
"clue/phar-composer": "^1.4",
32
"phpstan/phpstan": "^2.1",
33
- "phpunit/phpunit": "^11|^12.1"
+ "phpunit/phpunit": "^11|^12.2"
34
},
35
"suggest": {
36
"ext-apcu": "Required for the APCu dashboard.",
index.php
@@ -17,6 +17,10 @@
17
ini_set('display_startup_errors', 'On');
18
error_reporting(E_ALL);
19
20
+if (getenv('PCA_PHP_MEMORY_LIMIT')) {
21
+ ini_set('memory_limit', getenv('PCA_PHP_MEMORY_LIMIT'));
22
+}
23
+
24
$path = __DIR__.'/';
25
26
if (is_file(__DIR__.'/vendor/autoload.php')) {
predis.phar
179 KB
0 commit comments