Skip to content

Commit

Permalink
Merge pull request #10 from ingenerator/support-php83
Browse files Browse the repository at this point in the history
Support PHP 8.3
  • Loading branch information
craig410 authored Sep 26, 2024
2 parents d04bde1 + 432c72f commit b962fc3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,6 @@ README text eol=lf
*.sqlite binary

# Ignore paths that should not be included in an archive (eg for a distribution version)
/test
/.github export-ignore
/test export-ignore
/phpunit.xml export-ignore
3 changes: 3 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,14 @@ jobs:
matrix:
php_version:
- '8.2'
- '8.3'
dependencies:
- 'default'
include:
- php_version: '8.2'
dependencies: 'lowest'
- php_version: '8.3'
dependencies: 'lowest'
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
### Unreleased

### v1.5.0 (2024-09-25)

* Support PHP 8.3
* Support warden-core ^2.0

### v1.4.0 (2024-04-18)

* Add ArrayAuthoriserMock for mocking authorisation decisions in tests.
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
}
],
"require": {
"php": "~8.2.0",
"ingenerator/warden-core": "^1.2",
"php": "~8.2.0 || ~8.3.0",
"ingenerator/warden-core": "^1.2 || ^2.0",
"psr/log": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
Expand Down

0 comments on commit b962fc3

Please sign in to comment.