You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As with the earlier two composer install methods, you can omit installing
131
+
As with the earlier composer install method, you can omit installing
144
132
phpunit and its dependencies by adding the ``--no-dev`` argument to the ``composer require`` command.
145
133
146
134
Setting Up
147
135
----------
148
136
149
-
Copy the ``app``, ``public``, and ``writable`` folders from ``vendor/codeigniter4/framework``
150
-
to your project root
151
-
152
-
Copy the ``env``, ``phpunit.xml.dist`` and ``spark`` files, from
153
-
``vendor/codeigniter4/framework`` to your project root
154
-
155
-
You will have to adjust the system path to refer to the vendor one, e.g., ``ROOTPATH . '/vendor/codeigniter4/framework/system'``,
156
-
- the ``$systemDirectory`` variable in **app/Config/Paths.php**
137
+
1. Copy the ``app``, ``public``, ``tests`` and ``writable`` folders from ``vendor/codeigniter4/framework`` to your project root
138
+
2. Copy the ``env``, ``phpunit.xml.dist`` and ``spark`` files, from ``vendor/codeigniter4/framework`` to your project root
139
+
3. You will have to adjust the ``$systemDirectory`` property in **app/Config/Paths.php** to refer to the vendor one, e.g., ``ROOTPATH . '/vendor/codeigniter4/framework/system'``.
157
140
158
141
Initial Configuration
159
142
---------------------
@@ -168,7 +151,7 @@ Upgrading
168
151
169
152
Whenever there is a new release, then from the command line in your project root::
170
153
171
-
> composer update --prefer-source
154
+
> composer update
172
155
173
156
Read the :doc:`upgrade instructions <upgrading>`, and check Breaking Changes and Enhancements.
174
157
@@ -187,7 +170,7 @@ Structure
187
170
188
171
Folders in your project after set up:
189
172
190
-
- app, public, writable (when using ``--prefer-source``)
0 commit comments