Skip to content

Commit

Permalink
Make unknown namespaces fallback to the /Plugin directory
Browse files Browse the repository at this point in the history
This will make using plugins a bit simpler as they will all autoload as
long as the classnames match the filesystem under /Plugin. Plugins
installed with composer will have their own autoloader entries and
shouldn't be caught by the fallback path.
  • Loading branch information
markstory committed Sep 8, 2013
1 parent 063d713 commit 159a67f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions App/composer.json
Expand Up @@ -13,8 +13,8 @@
},
"autoload": {
"psr-0": {
"": ".",
"App\\": "."
"App\\": ".",
"": "./Plugin"
}
},
"scripts": {
Expand Down

0 comments on commit 159a67f

Please sign in to comment.