Skip to content

Commit 35c90ca

Browse files
authored
[Fix] installation problem on laravel 11 (#72)
* Fix styling * Update Symfony Dom Crawler --------- Co-authored-by: Baspa <[email protected]>
1 parent b2b41ec commit 35c90ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"jeremykendall/php-domain-parser": "^6.3",
2424
"spatie/browsershot": "^3.0|^4.0",
2525
"spatie/laravel-package-tools": "^1.13",
26-
"symfony/dom-crawler": "^6.2",
26+
"symfony/dom-crawler": "^6.2|^7.0",
2727
"symfony/finder": "^6.2|^7.0",
2828
"vipnytt/robotstxtparser": "^2.1"
2929
},

src/helpers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ function getRemoteFileSize(string $url): int
7272

7373
if (! isset($contentLength)) {
7474
$options = (array) config('seo.http.options', []);
75-
$context = isset($options['verify']) && !$options['verify']
75+
$context = isset($options['verify']) && ! $options['verify']
7676
? $context = ['ssl' => ['verify_peer' => false, 'verify_peer_name' => false]]
7777
: [];
7878

0 commit comments

Comments
 (0)