diff options
author | Filippo Tessarotto <zoeslam@gmail.com> | 2012-09-28 09:34:16 +0200 |
---|---|---|
committer | Filippo Tessarotto <zoeslam@gmail.com> | 2012-09-28 09:34:16 +0200 |
commit | 41714cb061ee428fcfacf7c87584116c96c5e0e8 (patch) | |
tree | 13b835b1fa14b28b43b59618cc45312592fe14aa | |
parent | 4665ed2785a57a491df92a8eb678c3eb1b9bac4e (diff) | |
download | symfony-security-41714cb061ee428fcfacf7c87584116c96c5e0e8.zip symfony-security-41714cb061ee428fcfacf7c87584116c96c5e0e8.tar.gz symfony-security-41714cb061ee428fcfacf7c87584116c96c5e0e8.tar.bz2 |
Optimize autoload prefix in composer.json
By having more specific autoload prefixes it is possible to reduce the
number of stat calls made. Also it prevents conflicts with similar
namespaces.
-rw-r--r-- | composer.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/composer.json b/composer.json index ceaf280..73e07b5 100644 --- a/composer.json +++ b/composer.json @@ -37,7 +37,7 @@ "doctrine/dbal": "to use the built-in ACL implementation" }, "autoload": { - "psr-0": { "Symfony\\Component\\Security": "" } + "psr-0": { "Symfony\\Component\\Security\\": "" } }, "target-dir": "Symfony/Component/Security", "minimum-stability": "dev", |