Skip to content

Commit

Permalink
Merge pull request #1935 from jim-parry/fix/phpunit
Browse files Browse the repository at this point in the history
Update phpunit.xml scripts. Fixes #1932
  • Loading branch information
jim-parry authored Apr 10, 2019
2 parents d494df9 + c80544f commit 113f4ae
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion admin/framework/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"scripts": {
"post-update-cmd": [
"composer dump-autoload",
"@composer dump-autoload",
"CodeIgniter\\ComposerScripts::postUpdate"
]
},
Expand Down
2 changes: 1 addition & 1 deletion admin/starter/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"scripts": {
"post-update-cmd": [
"composer dump-autoload"
"@composer dump-autoload"
]
},
"support": {
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"scripts": {
"post-update-cmd": [
"composer dump-autoload",
"@composer dump-autoload",
"CodeIgniter\\ComposerScripts::postUpdate",
"bash admin/setup.sh"
]
Expand Down
5 changes: 5 additions & 0 deletions user_guide_src/source/installation/running.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ By default, the application will run using the "production" environment. To
take advantage of the debugging tools provided, you should set the environment
to "develop".

.. note:: If you will be running your site using a web server (e.g. Apache or Nginx),
you will need to modify the permissions for the ``writable`` folder inside
your project, so that it is writable by the user or account used by your
web server.

Local Development Server
=================================================

Expand Down

0 comments on commit 113f4ae

Please sign in to comment.