|
1 | 1 | <?php |
2 | 2 |
|
3 | 3 | return [ |
4 | | - "controllersPath" => "App/Controllers", |
| 4 | + "controllersPath" => "app/controllers", |
5 | 5 |
|
6 | | - "modelsPath" => "App/Models", |
| 6 | + "modelsPath" => "app/models", |
7 | 7 |
|
8 | | - "migrationsPath" => "App/Database/Migrations", |
| 8 | + "migrationsPath" => "app/database/migrations", |
9 | 9 |
|
10 | | - "seedsPath" => "App/Database/Seeds", |
| 10 | + "seedsPath" => "app/database/seeds", |
11 | 11 |
|
12 | | - "factoriesPath" => "App/Database/Factories", |
| 12 | + "factoriesPath" => "app/database/factories", |
13 | 13 |
|
14 | | - "helpersPath" => "App/Helpers", |
| 14 | + "helpersPath" => "app/helpers", |
15 | 15 |
|
16 | | - "viewsPath" => "App/Views", |
| 16 | + "viewsPath" => "app/views", |
17 | 17 |
|
18 | | - "configPath" => "App/Config", |
| 18 | + "configPath" => "config", |
19 | 19 |
|
20 | | - "storagePath" => "storage", |
| 20 | + "storagePath" => "storage", |
21 | 21 |
|
22 | | - "commandsPath" => "App/Console", |
| 22 | + "commandsPath" => "app/console", |
23 | 23 |
|
24 | | - "routesPath" => "App/Routes", |
| 24 | + "routesPath" => "app/routes", |
25 | 25 |
|
26 | | - "libPath" => "Lib", |
| 26 | + "libPath" => "lib", |
27 | 27 |
|
28 | | - "publicPath" => "public", |
| 28 | + "publicPath" => "public", |
29 | 29 |
|
30 | 30 | "databaseStoragePath" => "storage/app/db" |
31 | 31 | ]; |
0 commit comments