Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/php-static-scanner-instrumentalization.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2016-12-20 17:34:57 +0300
committerLukas Reschke <lukas@statuscode.ch>2016-12-20 17:34:57 +0300
commitb22864ae0f11d473ddf8e3c5263c355871a885e3 (patch)
treee8736e9841a2d07608706a80787b89f4795c83c6
parent5899b8afe3c94f2bc8dbc4b35f090e6d1476dbfe (diff)
Higher defaults
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
-rw-r--r--instrumentalize.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/instrumentalize.php b/instrumentalize.php
index d292c8e..f1e8c04 100644
--- a/instrumentalize.php
+++ b/instrumentalize.php
@@ -28,6 +28,8 @@ if(count($argv) !== 2) {
$folderToScan = realpath($argv[1]);
ini_set('xdebug.max_nesting_level', 3000);
+set_time_limit(3600);
+ini_set('memory_limit', '8096M');
$scanner = new \Instrumentalizator\Scanner();