minor #986 Use PSR-4 for autoloading, works same as the PSR-0 configuration....
minor #986 Use PSR-4 for autoloading, works same as the PSR-0 configuration. Use au... (henrikbjorn) This PR was submitted for the master branch but it was merged into the 1.3 branch instead (closes #986). Discussion ---------- Use PSR-4 for autoloading, works same as the PSR-0 configuration. Use au... ...toload-dev for autoloading tests Commits ------- 0df76379 Use PSR-4 for autoloading, works same as the PSR-0 configuration. Use autoload-dev for autoloading tests
Showing
... | ... | @@ -52,7 +52,10 @@ |
"symfony/form": "~2.3" | ||
}, | ||
"autoload": { | ||
"psr-0": { "Silex": "src/" } | ||
"psr-4": { "Silex\\": "src/Silex" } | ||
}, | ||
"autoload-dev" : { | ||
"psr-4": { "Silex\\Tests\\" : "tests/Silex/Tests" } | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
... | ... |
tests/bootstrap.php
deleted
100644 → 0
Please register or sign in to comment