Skip to content

Commit 113f4ae

Browse files
authored
Merge pull request #1935 from jim-parry/fix/phpunit
Update phpunit.xml scripts. Fixes #1932
2 parents d494df9 + c80544f commit 113f4ae

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

admin/framework/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
},
2626
"scripts": {
2727
"post-update-cmd": [
28-
"composer dump-autoload",
28+
"@composer dump-autoload",
2929
"CodeIgniter\\ComposerScripts::postUpdate"
3030
]
3131
},

admin/starter/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"scripts": {
1616
"post-update-cmd": [
17-
"composer dump-autoload"
17+
"@composer dump-autoload"
1818
]
1919
},
2020
"support": {

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
},
2727
"scripts": {
2828
"post-update-cmd": [
29-
"composer dump-autoload",
29+
"@composer dump-autoload",
3030
"CodeIgniter\\ComposerScripts::postUpdate",
3131
"bash admin/setup.sh"
3232
]

user_guide_src/source/installation/running.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ By default, the application will run using the "production" environment. To
3030
take advantage of the debugging tools provided, you should set the environment
3131
to "develop".
3232

33+
.. note:: If you will be running your site using a web server (e.g. Apache or Nginx),
34+
you will need to modify the permissions for the ``writable`` folder inside
35+
your project, so that it is writable by the user or account used by your
36+
web server.
37+
3338
Local Development Server
3439
=================================================
3540

0 commit comments

Comments
 (0)