Skip to content

Commit 60d4ba9

Browse files
committed
[doc] Removal of the 'rc' parameter from the installation / update commands via Composer
1 parent df322dc commit 60d4ba9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

user_guide_src/source/installation/installing_composer.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Installation & Set Up
3232

3333
In the folder above your project root::
3434

35-
composer create-project codeigniter4/appstarter project-root -s rc
35+
composer create-project codeigniter4/appstarter project-root -s
3636

3737
The command above will create a "project-root" folder.
3838

@@ -46,7 +46,7 @@ trusted dependencies that we bundle, being composer-installed.
4646

4747
A sample such installation command, using the default project-root "appstarter"::
4848

49-
composer create-project codeigniter4/appstarter -s rc --no-dev
49+
composer create-project codeigniter4/appstarter -s --no-dev
5050

5151
After installation you should follow the steps in the "Upgrading" section.
5252

@@ -158,7 +158,7 @@ will be your document root.
158158

159159
In your project root::
160160

161-
composer require codeigniter4/framework @rc
161+
composer require codeigniter4/framework
162162

163163
As with the earlier two composer install methods, you can omit installing
164164
phpunit and its dependencies by adding the "--no-dev" argument to the "composer require" command.
@@ -212,6 +212,6 @@ they can be added to your project in a similar fashion.
212212

213213
From the command line inside your project root::
214214

215-
composer require codeigniter4/translations @beta
215+
composer require codeigniter4/translations @rc
216216

217217
These will be updated along with the framework whenever you do a ``composer update``.

0 commit comments

Comments
 (0)