Skip to content

Commit a67f48b

Browse files
authored
Merge pull request #7198 from kenjis/fix-framework/composer.json
chore: remove post-update-cmd in framework composer.json
2 parents eb01917 + fd029cc commit a67f48b

2 files changed

Lines changed: 22 additions & 3 deletions

File tree

admin/framework/composer.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,6 @@
5656
]
5757
},
5858
"scripts": {
59-
"post-update-cmd": [
60-
"CodeIgniter\\ComposerScripts::postUpdate"
61-
],
6259
"test": "phpunit"
6360
},
6461
"support": {

user_guide_src/source/installation/upgrade_432.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,28 @@ slash (``/``). Now it returns baseURL with a trailing slash. For example:
2727

2828
If you have code to call ``base_url()`` without argument, you may need to adjust the URLs.
2929

30+
Mandatory File Changes
31+
**********************
32+
33+
composer.json
34+
=============
35+
36+
If you have installed CodeIgnter manually and are using or planning to use Composer,
37+
remove the following line:
38+
39+
.. code-block:: text
40+
41+
{
42+
...
43+
"scripts": {
44+
"post-update-cmd": [
45+
"CodeIgniter\\ComposerScripts::postUpdate" <-- Remove this line
46+
],
47+
"test": "phpunit"
48+
},
49+
...
50+
}
51+
3052
Project Files
3153
*************
3254

0 commit comments

Comments
 (0)