@@ -32,7 +32,7 @@ Installation & Set Up
3232
3333In the folder above your project root::
3434
35- composer create-project codeigniter4/appstarter project-root
35+ > composer create-project codeigniter4/appstarter project-root
3636
3737The command above will create a "project-root" folder.
3838
@@ -46,7 +46,7 @@ trusted dependencies that we bundle, being composer-installed.
4646
4747A sample such installation command, using the default project-root "appstarter"::
4848
49- composer create-project codeigniter4/appstarter --no-dev
49+ > composer create-project codeigniter4/appstarter --no-dev
5050
5151After installation you should follow the steps in the "Upgrading" section.
5252
@@ -55,11 +55,11 @@ Upgrading
5555
5656Whenever there is a new release, then from the command line in your project root::
5757
58- composer update
58+ > composer update
5959
6060If you want to compare the latest framework source structure for non-system directory (app, public, etc), you can update with ``--prefer-source ``::
6161
62- composer update codeigniter4/framework --prefer-source
62+ > composer update codeigniter4/framework --prefer-source
6363
6464If ``--prefer-source `` doesn't automatically update to pull latest framework source structure, you can remove first::
6565
@@ -125,7 +125,7 @@ will be your document root.
125125
126126In your project root::
127127
128- composer require codeigniter4/framework --prefer-source
128+ > composer require codeigniter4/framework --prefer-source
129129
130130As with the earlier two composer install methods, you can omit installing
131131phpunit and its dependencies by adding the ``--no-dev `` argument to the ``composer require `` command.
@@ -147,7 +147,7 @@ Upgrading
147147
148148Whenever there is a new release, then from the command line in your project root::
149149
150- composer update --prefer-source
150+ > composer update --prefer-source
151151
152152Read the upgrade instructions, and check designated
153153``app/Config `` folders for affected changes.
@@ -179,6 +179,6 @@ they can be added to your project in a similar fashion.
179179
180180From the command line inside your project root::
181181
182- composer require codeigniter4/translations
182+ > composer require codeigniter4/translations
183183
184184These will be updated along with the framework whenever you do a ``composer update ``.
0 commit comments