spatie / crawler

An easy to use, powerful crawler implemented in PHP. Can execute Javascript.

Home Page:https://freek.dev/308-building-a-crawler-in-php

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dependency spatie/image-optimizer requiring php 7.2

PBrunot opened this issue · comments

I ran a php composer update on php 7.1 and it broke my build because I have spatie/crawler dependency (php ^7.0) which needs spatie/image-optimizer (php ^7.2).

same problem here. Did you find any solution @PBrunot ?

My workaround is to add an explicit version in the composer.json to reference the last spatie/image-optimizer using php7.0 (v1.1.4)

{
"spatie/crawler": "^4.0",
"spatie/image-optimizer": "1.1.4"
}