@@ -32,7 +32,7 @@ Installation & Set Up
32
32
33
33
In the folder above your project root::
34
34
35
- composer create-project codeigniter4/appstarter project-root -s rc
35
+ composer create-project codeigniter4/appstarter project-root
36
36
37
37
The command above will create a "project-root" folder.
38
38
@@ -46,7 +46,7 @@ trusted dependencies that we bundle, being composer-installed.
46
46
47
47
A sample such installation command, using the default project-root "appstarter"::
48
48
49
- composer create-project codeigniter4/appstarter -s rc - -no-dev
49
+ composer create-project codeigniter4/appstarter --no-dev
50
50
51
51
After installation you should follow the steps in the "Upgrading" section.
52
52
@@ -117,7 +117,7 @@ will be your document root.
117
117
118
118
In your project root::
119
119
120
- composer require codeigniter4/framework @rc
120
+ composer require codeigniter4/framework
121
121
122
122
As with the earlier two composer install methods, you can omit installing
123
123
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.
171
171
172
172
From the command line inside your project root::
173
173
174
- composer require codeigniter4/translations @beta
174
+ composer require codeigniter4/translations @rc
175
175
176
176
These will be updated along with the framework whenever you do a ``composer update ``.
0 commit comments