Working on the default app structure.

This commit is contained in:
Taylor Otwell
2014-08-18 22:46:16 -05:00
parent a5f4e74889
commit 9aae50e501
33 changed files with 33 additions and 21 deletions

View File

@@ -4,18 +4,22 @@
"keywords": ["framework", "laravel"],
"license": "MIT",
"require": {
"laravel/framework": "4.3.*"
"laravel/framework": "4.3.*",
"phpunit/phpunit": "~4.0"
},
"autoload": {
"classmap": [
"app/console",
"app/database",
"app/http",
"app/tests/TestCase.php"
"app/Console",
"app/Http/Controllers",
"database",
"app/Http/Filters",
"app/Providers",
"app/Http/Requests",
"tests/TestCase.php"
],
"psr-4": {
"App\\": "app/core/",
"Providers\\": "app/providers/"
"App\\": "app/Core/",
"Providers\\": "app/Providers/"
}
},
"scripts": {