Welcome Guest, Not a member yet? Register   Sign In
Vendor folder composer location
#1

(This post was last modified: 03-10-2015, 02:33 AM by davidgv88.)

Hi.

The default path of the folder "Vendor" is the root of the project
In .gitignore file exist the line "/vendor/".

In application/config/config.php says: Enabling this setting will tell CodeIgniter to look for a Composer
| package auto-loader script in application/vendor/autoload.php.

If I change $config['composer_autoload'] = TRUE by default CodeIgniter 3 search inside of application Folder.


System/core/Codeigniter.php:165
......
if ($composer_autoload === TRUE)
{
file_exists(APPPATH.'vendor/autoload.php')
? require_once(APPPATH.'vendor/autoload.php')
: log_message('error', '$config[\'composer_autoload\'] is set to TRUE but '.APPPATH.'vendor/autoload.php was not found.');
}

In System/core/Codeigniter.php the APPPATH is incorrect? By default would be FCPATH?
Reply


Messages In This Thread
Vendor folder composer location - by davidgv88 - 03-10-2015, 01:56 AM
RE: Vendor folder composer location - by Narf - 03-10-2015, 11:02 AM



Theme © iAndrew 2016 - Forum software by © MyBB