Use PSR-4 for autoloading, works same as the PSR-0 configuration. Use...
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