Skip to content

Commit

Permalink
Merge pull request #38 from mkoprek/add_support_for_php_84
Browse files Browse the repository at this point in the history
Add support for PHP 8.4.*
  • Loading branch information
DaveLiddament authored Oct 18, 2024
2 parents a360857 + 6f7009c commit 337f3d4
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 970 deletions.
1 change: 1 addition & 0 deletions .github/workflows/full-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- "8.1"
- "8.2"
- "8.3"
- "8.4"
operating-system:
- "ubuntu-22.04"

Expand Down
9 changes: 3 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,12 @@
}
},
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
},
"require-dev": {
"phpstan/phpstan": "^1.5",
"friendsofphp/php-cs-fixer": "^3.8",
"php-parallel-lint/php-parallel-lint": "^1.3",
"vimeo/psalm": "^4.22"
"php-parallel-lint/php-parallel-lint": "^1.3"
},
"scripts": {
"composer-validate": "@composer validate --no-check-all --strict",
Expand All @@ -38,14 +37,12 @@
"php-cs-fixer fix --dry-run -v"
],
"phpstan": "phpstan analyse",
"psalm": "psalm",
"lint": "parallel-lint src",
"ci": [
"@composer-validate",
"@lint",
"@cs",
"@phpstan",
"@psalm"
"@phpstan"
]
}
}
Loading

0 comments on commit 337f3d4

Please sign in to comment.