Skip to content
Cloudmanic Labs, LLC edited this page Jun 9, 2015 · 1 revision

If you look in vendor/composer/autoload_files.php Laravel 5 autoloads some functions that conflict with the CMS. So we have to add this to our CMS index.php before we autoload composer.

<?php
  
// We do this because Laravel 5 thinks they own all function names.
require_once '../../vendor/cloudmanic/cloudmanic-cms/src/codeigniter/helpers/url_helper.php';

require '../../vendor/autoload.php';
Clone this wiki locally