diff options
author | Andrey Andreev <narf@devilix.net> | 2014-07-11 18:48:37 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-07-11 18:48:37 +0200 |
commit | ed86ee14f3a36de1034b8fa19ff6d41aeb428a93 (patch) | |
tree | 33d436035a0d1863625aef1b5253611d13532e1a /user_guide_src/source/general | |
parent | 9fa275e6aba369fab6557284a84e2c0dda77da35 (diff) |
Add setting ['composer_autoload']
Supersedes PR #3132
Diffstat (limited to 'user_guide_src/source/general')
-rw-r--r-- | user_guide_src/source/general/autoloader.rst | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/user_guide_src/source/general/autoloader.rst b/user_guide_src/source/general/autoloader.rst index bf2e3935a..2f1223e28 100644 --- a/user_guide_src/source/general/autoloader.rst +++ b/user_guide_src/source/general/autoloader.rst @@ -20,4 +20,8 @@ file and add the item you want loaded to the autoload array. You'll find instructions in that file corresponding to each type of item. .. note:: Do not include the file extension (.php) when adding items to - the autoload array.
\ No newline at end of file + the autoload array. + +Additionally, if you want CodeIgniter to use a `Composer <https://getcomposer.org/>`_ +auto-loader, just set ``$config['composer_autoload']`` to ``TRUE`` or +a custom path in **application/config/config.php**.
\ No newline at end of file |