Skip to content
This repository has been archived by the owner on Jan 25, 2024. It is now read-only.

Commit

Permalink
chore: add laravel 10 compatibility
Browse files Browse the repository at this point in the history
Laravel 10.x Compatibility
  • Loading branch information
dweidner authored Mar 16, 2023
2 parents 09df2de + 86c43b4 commit 4b6407b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"description": "Laravel Facade for Goutte, a simple PHP Web Scraper",
"license": "MIT",
"keywords": [
"weidner",
"goutte",
"laravel"
"weidner",
"goutte",
"laravel"
],
"homepage": "https://github.com/dweidner/laravel-goutte",
"authors": [
Expand All @@ -17,21 +17,21 @@
],
"require": {
"php": ">=7.3",
"illuminate/support": "^8|^9",
"illuminate/support": "^8|^9|^10.0",
"fabpot/goutte": "^4.0"
},
"require-dev": {
"orchestra/testbench": "^6"
"orchestra/testbench": "^6|^8.0"
},
"autoload": {
"psr-4": {
"Weidner\\Goutte\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Weidner\\Goutte\\": "tests/"
}
"psr-4": {
"Weidner\\Goutte\\": "tests/"
}
},
"extra": {
"branch-alias": {
Expand All @@ -47,6 +47,6 @@
}
},
"scripts": {
"test": "phpunit"
"test": "phpunit"
}
}

0 comments on commit 4b6407b

Please sign in to comment.