I.Jokhadze
I.Jokhadze

Reputation: 477

Error on build Laravel Project in Gitlab

I'm trying to build my project but after push on gitlab it returns Error: enter image description here

Upvotes: 0

Views: 27

Answers (1)

Loek
Loek

Reputation: 4135

Your DBAL version is one that needs php 7 or higher. Pick another version that satisfies php 5.6, like DBAL 2.5.x

As a sidenote, this is why it is useful to make your local development environment resemble your production environment. php 7 has features that 5.6 doesn't and you WILL break your software 99.9% of the time.

Upvotes: 2

Related Questions