@@ -8,8 +8,8 @@ can change to meet the needs of your application.
88Default Directories
99===================
1010
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 ``.
1313Each of these directories has a very specific part to play.
1414
1515app
@@ -44,6 +44,9 @@ All files in this directory live under the ``App`` namespace, though you are fre
4444
4545system
4646------
47+
48+ .. note :: If you install CodeIgniter with Composer, the ``system`` is located in ``vendor/codeigniter4/framework/system``.
49+
4750This directory stores the files that make up the framework, itself. While you have a lot of flexibility in how you
4851use the application directory, the files in the system directory should never be modified. Instead, you should
4952extend 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
7578utilities that you can use while writing your tests. This directory does not need to be transferred to your
7679production servers.
7780
78- docs
79- ----
80- If this directory is part of your project, it holds a local copy of the CodeIgniter4
81- User Guide.
82-
8381Modifying Directory Locations
8482-----------------------------
8583
0 commit comments