summaryrefslogtreecommitdiffstats
path: root/vendor/ezyang/htmlpurifier/benchmarks/Trace.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-08-13 09:23:09 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2015-08-13 09:23:42 +0200
commitde378700110c202bc25e9378cb5fdb852d27f07a (patch)
tree52d7d9ffb62d2dc732c54942fea59501473545d4 /vendor/ezyang/htmlpurifier/benchmarks/Trace.php
parente282e47ac4b6cc2d309985996d02d8a9093050e4 (diff)
remove net url package and update composer deps
Diffstat (limited to 'vendor/ezyang/htmlpurifier/benchmarks/Trace.php')
-rw-r--r--vendor/ezyang/htmlpurifier/benchmarks/Trace.php21
1 files changed, 0 insertions, 21 deletions
diff --git a/vendor/ezyang/htmlpurifier/benchmarks/Trace.php b/vendor/ezyang/htmlpurifier/benchmarks/Trace.php
deleted file mode 100644
index 07a662848..000000000
--- a/vendor/ezyang/htmlpurifier/benchmarks/Trace.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-
-ini_set('xdebug.trace_format', 1);
-ini_set('xdebug.show_mem_delta', true);
-
-if (file_exists('Trace.xt')) {
- echo "Previous trace Trace.xt must be removed before this script can be run.";
- exit;
-}
-
-xdebug_start_trace(dirname(__FILE__) . '/Trace');
-require_once '../library/HTMLPurifier.auto.php';
-
-$purifier = new HTMLPurifier();
-
-$data = $purifier->purify(file_get_contents('samples/Lexer/4.html'));
-xdebug_stop_trace();
-
-echo "Trace finished.";
-
-// vim: et sw=4 sts=4