summaryrefslogtreecommitdiffstats
path: root/composer/autoload.php
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2023-01-20 13:48:25 +0100
committerJoas Schilling <coding@schilljs.com>2023-01-25 09:47:45 +0100
commit0ddc5a5863e733438285cd692d0535962ee927b5 (patch)
tree198d50ac9e23636bdcce732c8409105f41232498 /composer/autoload.php
parentcc0c8b821c201f778c9682b754d827e69e1ed63e (diff)
perf(autoloader): Force own autoloader
And don't register any generic PSR-4 nor PSR-0 loader in server. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'composer/autoload.php')
-rw-r--r--composer/autoload.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/composer/autoload.php b/composer/autoload.php
new file mode 100644
index 000000000..a075e1e88
--- /dev/null
+++ b/composer/autoload.php
@@ -0,0 +1,5 @@
+<?php
+
+declare(strict_types=1);
+
+require_once __DIR__ . '/../vendor/autoload.php';