Skip to content

Commit

Permalink
Require PHP 8.3 - FINAL DECISION!
Browse files Browse the repository at this point in the history
  • Loading branch information
pelmered committed Nov 24, 2024
1 parent ca972e2 commit 5f909ef
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.2, 8.3, 8.4]
php: [8.3, 8.4]
stability: [prefer-lowest, prefer-stable]

name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
fail-fast: true
matrix:
os: [windows-latest, macos-latest]
php: [8.2, 8.3, 8.4]
php: [8.3, 8.4]
stability: [prefer-lowest, prefer-stable]

name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Universally Unique Lexicographically Sortable Identifier(ULID) for Laravel",
"type": "library",
"require": {
"php": "^8.2",
"php": "^8.3",
"lewiscowles/ulid": "^1.3.1",
"illuminate/support": "^11.30",
"php-static-analysis/attributes": "^0.3.1",
Expand Down
4 changes: 2 additions & 2 deletions src/Formatter/UlidFormatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

class UlidFormatter
{
public const OPTION_LOWERCASE = 'lowercase';
public const string OPTION_LOWERCASE = 'lowercase';

public const OPTION_UPPERCASE = 'uppercase';
public const string OPTION_UPPERCASE = 'uppercase';

protected $customFormatter;

Expand Down

0 comments on commit 5f909ef

Please sign in to comment.