File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -20,21 +20,23 @@ MyWinterProject/
20
20
| |-- backend/ # The Backend module
21
21
| |-- cms/ # The CMS module
22
22
| `-- system/ # The System module
23
+ |-- node_modules/ # (optional) Frontend vendor files managed by NPM / Yarn
23
24
|-- plugins/ # Plugins
24
25
|-- storage/ # Local storage directory
25
26
| |-- app/ # Application storage, such as media and uploads
26
27
| |-- cms/ # CMS auto-generated system files
27
28
| |-- framework/ # System and cache files generated by the Laravel framework
28
29
| |-- logs/ # Error and message log storage
29
30
| `-- temp/ # Temporary file storage
30
- |-- tests/ # Automated tests
31
31
|-- themes/ # Themes
32
- |-- vendor/ # Vendor files managed by Composer
32
+ |-- vendor/ # PHP vendor files managed by Composer
33
33
|-- artisan # CLI entrypoint
34
- |-- composer.json # Composer project file (managing dependencies)
34
+ |-- composer.json # Composer project file (managing PHP dependencies)
35
35
|-- composer.lock # Composer lock file (info on currently installed packages)
36
36
|-- index.php # Web request entrypoint
37
- `-- phpunit.xml # PHPUnit configuration for unit test
37
+ |-- package.json # (optional) Node project file (managing frontend dependencies)
38
+ |-- package.lock # (optional) Node lock file (info on currently installed frontend packages)
39
+ `-- phpunit.xml # (optional) PHPUnit configuration for running automated testing suites
38
40
```
39
41
40
42
### Themes
You can’t perform that action at this time.
0 commit comments