Skip to content

Commit

Permalink
Update PHP version in workflows and composer.json; adjust dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Thavarshan committed Dec 6, 2024
1 parent 375ab25 commit 83a8cbe
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/laravel-pint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.3]
php: [8.4]

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.3, 8.2]
php: [8.2, 8.3, 8.4]
laravel: [9.*, 10.*, 11.*]
stability: [prefer-stable]

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jerome/fetch-php",
"description": "The JavaScript fetch API for PHP.",
"version": "2.0.2",
"version": "2.0.3",
"type": "library",
"license": "MIT",
"authors": [
Expand All @@ -24,19 +24,19 @@
]
},
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.8",
"php": "^8.0",
"guzzlehttp/guzzle": "^7.9",
"guzzlehttp/psr7": "^2.7",
"psr/http-message": "^1.0|^2.0",
"jerome/matrix": "^1.0"
"jerome/matrix": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"mockery/mockery": "^1.6",
"pestphp/pest": "^2.0|^3.0",
"phpstan/phpstan": "^1.11.5",
"squizlabs/php_codesniffer": "^3.7",
"symfony/var-dumper": "^6.0|^7.1"
"symfony/var-dumper": "^6.0|^7.2"
},
"autoload-dev": {
"psr-4": {
Expand Down

0 comments on commit 83a8cbe

Please sign in to comment.