From 7c5f371b9ac875ccacf605bcfa2843821fb5c339 Mon Sep 17 00:00:00 2001 From: Daniel Rudolf Date: Thu, 8 Oct 2015 14:19:59 +0200 Subject: [PATCH] Use PSR-0 autoload Makes no big difference... Using PSR-4 breaks BC. --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 926e41d..b0d75e1 100644 --- a/composer.json +++ b/composer.json @@ -18,10 +18,10 @@ "symfony/yaml" : "2.3" }, "autoload": { - "files": [ - "lib/Pico.php", - "lib/PicoPluginInterface.php", - "lib/AbstractPicoPlugin.php" - ] + "psr-0": { + "Pico": "lib/", + "PicoPluginInterface": "lib/", + "AbstractPicoPlugin": "lib/" + } } }