Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 225eaae

Browse files
authoredFeb 1, 2023
Merge pull request #7170 from kenjis/fix-docs-upgrade_430-composer.json
docs: add missing composer.json in Mandatory File Changes
2 parents a67f48b + 2285ee7 commit 225eaae

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
 

‎user_guide_src/source/installation/upgrade_430.rst

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,31 @@ Mock Config Classes
7373

7474
- Add **types** to the properties in these Config classes. You may need to fix the property values to match the property types.
7575

76+
composer.json
77+
=============
78+
79+
If you installed CodeIgnter manually, and are using Composer,
80+
you need to remove the following lines, and run ``composer update``.
81+
82+
.. code-block:: text
83+
84+
{
85+
...
86+
"require": {
87+
...
88+
"kint-php/kint": "^4.2", <-- Remove this line
89+
...
90+
},
91+
...
92+
"scripts": {
93+
"post-update-cmd": [
94+
"CodeIgniter\\ComposerScripts::postUpdate" <-- Remove this line
95+
],
96+
"test": "phpunit"
97+
},
98+
...
99+
}
100+
76101
Breaking Changes
77102
****************
78103

0 commit comments

Comments
 (0)
Please sign in to comment.