Welcome Guest, Not a member yet? Register   Sign In
Helper functions outside application and system folders
#1

Hello, I have a set of helpers that used by a number of applications in CI3. They are in the vendor folder and loaded with composer. I added to composer.json:

Code:
"autoload": {
       "files": [
        "vendor/diego/helpers/campos_helper.php",
        "vendor/diego/helpers/tablas_helper.php",
        "vendor/diego/helpers/vistas_helper.php",
        "vendor/diego/helpers/html_helper.php",
        "vendor/tcpdf/tcpdf.php"
       ],
"psr-4": {
"CodeIgniter\\": "system/",
        "Diego\\Admin\\": "vendor/diego/admin/",
        "Diego\\Compra\\": "vendor/diego/compra/",
        "Diego\\Foros\\": "vendor/diego/foros/"
}
},

But I don't get them, the helpers, available with Codeigniter4. Is there any way to keep them outside application and system folder. I read the manual but don't understand quite well.

Thank you.
Reply
#2

(This post was last modified: 06-30-2016, 06:16 AM by kilishan. Edit Reason: Added in Config to file path )

In /application/Config/App.php

public $composerAutoload = '../vendor/autoload.php';
Reply




Theme © iAndrew 2016 - Forum software by © MyBB