Skip to content

Commit 83b025a

Browse files
authored
Set minimum PHP version to 8.3 and update copyright (#95)
* Set minimum PHP version to 8.3; Update copyright * Remove extra artifact * Drop 8.2 support from GitHub actions * Suppress Psalm null warning in tests * Fix changelog
1 parent ce17d6a commit 83b025a

27 files changed

+2867
-1344
lines changed

.github/workflows/psalm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.3, 8.2]
11+
php: [8.3, 8.4]
1212
stability: [prefer-lowest, prefer-stable]
1313

1414
name: P${{ matrix.php }} - ${{ matrix.stability }}

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest, windows-latest]
12-
php: [8.3, 8.2]
12+
php: [8.3, 8.4]
1313
stability: [prefer-lowest, prefer-stable]
1414

1515
name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Version 3.0
2+
3+
* [95](https://github.com/Oire/Iridium-php/pull/95):
4+
Set minimum PHP version to 8.3;
5+
Update Copyright year to 2025.
6+
17
# Version 2.0
28

39
* [#76](https://github.com/Oire/Iridium-php/pull/76):
@@ -32,3 +38,7 @@
3238
Add basic PHP CodeSniffer ruleset.
3339
Add typed properties.
3440
* The `tokenIsExpired()` method is deprecated and will be removed in version 2.0, use `isExpired()` instead.
41+
42+
# Version 1.0
43+
44+
Initial release.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright © 2021-2024 Andre Polykanine also known as Menelion Elensúlë, The Magical Kingdom of Oirë, https://github.com/Oire
3+
Copyright © 2021-2025 André Polykanine also known as Menelion Elensúlë, Oire Software, https://github.com/Oire
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,5 +379,5 @@ When your pull request is submitted, make sure all checks passed on CI.
379379

380380
## License
381381

382-
Copyright © 2021-2024 Andre Polykanine also known as Menelion Elensúlë, [The Magical Kingdom of Oirë](https://github.com/Oire/).
382+
Copyright © 2021-2025 André Polykanine also known as Menelion Elensúlë, [Oire Software](https://github.com/Oire/).
383383
This software is licensed under an MIT license.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010
],
1111
"require": {
12-
"php": ">=8.1"
12+
"php": ">=8.3"
1313
},
1414
"require-dev": {
1515
"friendsofphp/php-cs-fixer": "*",

0 commit comments

Comments
 (0)