@@ -40,7 +40,7 @@ If you omit the "project-root" argument, the command will create an
4040"appstarter" folder, which can be renamed as appropriate.
4141
4242If you don't need or want phpunit installed, and all of its composer
43- dependencies, then add the " --no-dev" option to the end of the above
43+ dependencies, then add the `` --no-dev `` option to the end of the above
4444command line. That will result in only the framework, and the three
4545trusted dependencies that we bundle, being composer-installed.
4646
@@ -57,15 +57,15 @@ Whenever there is a new release, then from the command line in your project root
5757
5858 composer update
5959
60- If you want to compare the latest framework source structure for non-system directory (app, public, etc), you can update with `--prefer-source `:
60+ If you want to compare the latest framework source structure for non-system directory (app, public, etc), you can update with `` --prefer-source ``: :
6161
6262 composer update codeigniter4/framework --prefer-source
6363
64- If `--prefer-source ` doesn't automatically update to pull latest framework source structure, you can remove first:
64+ If `` --prefer-source `` doesn't automatically update to pull latest framework source structure, you can remove first: :
6565
6666 rm -rf vendor/codeigniter4/framework && composer update codeigniter4/framework --prefer-source
6767
68- If you used the " --no-dev" option when you created the project, it
68+ If you used the `` --no-dev `` option when you created the project, it
6969would be appropriate to do so here too, i.e., ``composer update --no-dev ``.
7070
7171Read the upgrade instructions, and check designated ``app/Config `` folders for affected changes.
@@ -87,7 +87,7 @@ Folders in your project after set up:
8787
8888- app, public, tests, writable
8989- vendor/codeigniter4/framework/system
90- - vendor/codeigniter4/framework/app & public (compare with yours after updating when using `--prefer-source `)
90+ - vendor/codeigniter4/framework/app & public (compare with yours after updating when using `` --prefer-source ` `)
9191
9292Latest Dev
9393-------------------------------------------------------
@@ -128,7 +128,7 @@ In your project root::
128128 composer require codeigniter4/framework --prefer-source
129129
130130As with the earlier two composer install methods, you can omit installing
131- phpunit and its dependencies by adding the " --no-dev" argument to the " composer require" command.
131+ phpunit and its dependencies by adding the `` --no-dev `` argument to the `` composer require `` command.
132132
133133Set Up
134134-------------------------------------------------------
@@ -167,7 +167,7 @@ Structure
167167
168168Folders in your project after set up:
169169
170- - app, public, writable (when using `--prefer-source `)
170+ - app, public, writable (when using `` --prefer-source ` `)
171171- vendor/codeigniter4/framework/system
172172
173173
0 commit comments