@@ -8,8 +8,8 @@ can change to meet the needs of your application.
8
8
Default Directories
9
9
===================
10
10
11
- A fresh install has six directories: ``/app ``, `` /system ``, ``/public ``,
12
- ``/writable ``, ``/tests `` and possibly ``/docs ``.
11
+ A fresh install has five directories: ``/app ``, ``/public ``,
12
+ ``/writable ``, ``/tests `` and `` /system `` or ``/vendor ``.
13
13
Each of these directories has a very specific part to play.
14
14
15
15
app
@@ -44,6 +44,9 @@ All files in this directory live under the ``App`` namespace, though you are fre
44
44
45
45
system
46
46
------
47
+
48
+ .. note :: If you install CodeIgniter with Composer, the ``system`` is located in ``vendor/codeigniter4/framework/system``.
49
+
47
50
This directory stores the files that make up the framework, itself. While you have a lot of flexibility in how you
48
51
use the application directory, the files in the system directory should never be modified. Instead, you should
49
52
extend the classes, or create new classes, to provide the desired functionality.
@@ -75,11 +78,6 @@ This directory is set up to hold your test files. The ``_support`` directory hol
75
78
utilities that you can use while writing your tests. This directory does not need to be transferred to your
76
79
production servers.
77
80
78
- docs
79
- ----
80
- If this directory is part of your project, it holds a local copy of the CodeIgniter4
81
- User Guide.
82
-
83
81
Modifying Directory Locations
84
82
-----------------------------
85
83
0 commit comments