merged branch bamarni/classmap-paths (PR #5634)

This PR was merged into the master branch.

Commits
-------

3b47088 fixed some classmap paths

Discussion
----------

fixed some classmap paths

Since #5213, an error occurs when requiring the locale or http-foundation package with composer, because it doesn't automatically prepend the target-dir to the classmaps.

Cf. here for example : https://travis-ci.org/#!/doctrine/DoctrineMongoDBBundle/jobs/2608238

cc @jalliot
This commit is contained in:
Fabien Potencier 2012-09-30 16:02:34 +02:00
commit 9bdad739ef
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
},
"autoload": {
"psr-0": { "Symfony\\Component\\HttpFoundation\\": "" },
"classmap": [ "Resources/stubs" ]
"classmap": [ "Symfony/Component/HttpFoundation/Resources/stubs" ]
},
"target-dir": "Symfony/Component/HttpFoundation",
"minimum-stability": "dev",

View File

@ -23,7 +23,7 @@
},
"autoload": {
"psr-0": { "Symfony\\Component\\Locale\\": "" },
"classmap": [ "Resources/stubs" ]
"classmap": [ "Symfony/Component/Locale/Resources/stubs" ]
},
"target-dir": "Symfony/Component/Locale",
"minimum-stability": "dev",