From 19b31d0c25d43e5d57cc9c8a13cac99bae683a68 Mon Sep 17 00:00:00 2001 From: Javier Spagnoletti Date: Sun, 21 Sep 2014 16:42:58 -0300 Subject: [PATCH] Updated autoload standard to PSR-4 for own project bundles. | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Doc PR | #4255 --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 75b826658e..0fd3d9a76d 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,8 @@ "type": "project", "description": "The \"Symfony Standard Edition\" distribution", "autoload": { - "psr-0": { "": "src/", "SymfonyStandard": "app/" } + "psr-0": { "SymfonyStandard": "app/" }, + "psr-4": { "": "src/" } }, "require": { "php": ">=5.3.3",