Basaa
Basaa

Reputation: 1685

Composer - Forked Laravel 4.2 not installing

I have cloned the Laravel 4.2 branch from Github and pushed it to a private GitLab server. I've created a new branch from 4.2 with the name dev-bugfix and added a comment in 1 file to see if composer would install my fork and not the official Laravel.

My steps:

Composer starts with cloning my fork of Laravel-framework after which it installs a few dependencies. Then, Artisan wants to clean compiled, where it fails. Complete output click

What am I missing? What am I doing wrong?

Upvotes: 3

Views: 182

Answers (1)

Limon Monte
Limon Monte

Reputation: 54429

You need to install patchwork/utf8 package.

In the require section in your composer.json add: "patchwork/utf8": "1.2.*" and then do composer update.

Upvotes: 0

Related Questions