Skip to content

Commit 10cb832

Browse files
authored
Merge pull request #2604 from jlamim/user_guide
[doc] Removal of the 'rc' parameter from the installation / update co…
2 parents 47dbb16 + 0712567 commit 10cb832

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
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 --no-dev
5050

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

@@ -117,7 +117,7 @@ will be your document root.
117117

118118
In your project root::
119119

120-
composer require codeigniter4/framework @rc
120+
composer require codeigniter4/framework
121121

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

172172
From the command line inside your project root::
173173

174-
composer require codeigniter4/translations @beta
174+
composer require codeigniter4/translations @rc
175175

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

0 commit comments

Comments
 (0)