Skip to content

Commit 5b24664

Browse files
committed
📌 Target PHP >= 8.3
1 parent 0e9f4a9 commit 5b24664

File tree

8 files changed

+10
-7
lines changed

8 files changed

+10
-7
lines changed

‎.github/workflows/ci.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest]
16-
php: [8.2, 8.3, 8.4]
16+
php: [8.3, 8.4]
1717
dependencies: [lowest, highest]
1818
experimental: [false]
1919
name: 👷 CI PHP-${{ matrix.php }} ${{ matrix.dependencies }} on ${{ matrix.os }}

‎README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Silament is open-sourced software licensed under the [MIT License][license-link]
6767

6868
[sikessem-link]: https://github.com/sikessem "Sikessem"
6969

70-
[php-icon]: https://img.shields.io/badge/PHP-8.2-ccc.svg?style=flat&logo=php
70+
[php-icon]: https://img.shields.io/badge/PHP-8.3-ccc.svg?style=flat&logo=php
7171
[php-link]: https://github.com/sikessem/filament/search?l=php "PHP code"
7272

7373
[packagist-version-icon]: https://img.shields.io/packagist/v/sikessem/filament

‎composer.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"chat": "https://github.com/orgs/sikessem/discussions"
3434
},
3535
"require": {
36-
"php": ">=8.2",
36+
"php": ">=8.3",
3737
"filament/filament": "^3.3",
3838
"illuminate/console": "^12.10",
3939
"spatie/laravel-package-tools": "^1.92"

‎composer.lock‎

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎rector.php‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
// define sets of rules
1919
$rectorConfig->sets([
20-
LevelSetList::UP_TO_PHP_82,
2120
LevelSetList::UP_TO_PHP_83,
2221
LevelSetList::UP_TO_PHP_84,
2322
]);

‎src/Commands/MakeCommand.php‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ protected function resolveStubPath($stub): string
3030
*
3131
* @return string
3232
*/
33+
#[\Override]
3334
protected function getNameInput()
3435
{
3536
$name = str(parent::getNameInput())->studly();

‎src/Commands/MakeFieldCommand.php‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ protected function getStub()
2626
*
2727
* @return array
2828
*/
29+
#[\Override]
2930
protected function getArguments()
3031
{
3132
return [
@@ -44,6 +45,7 @@ protected function getArguments()
4445
*
4546
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
4647
*/
48+
#[\Override]
4749
protected function buildClass($name)
4850
{
4951
$stub = parent::buildClass($name);
@@ -72,6 +74,7 @@ protected function replaceArgument(string &$stub, string $name, string $default
7274
return $this;
7375
}
7476

77+
#[\Override]
7578
protected function getDefaultNamespace($rootNamespace)
7679
{
7780
return $rootNamespace.'\\Fields';

‎src/Silament.php‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
*/
1010
final class Silament
1111
{
12-
public const VERSION = '0.0.0';
12+
public const string VERSION = '0.0.0';
1313
}

0 commit comments

Comments
 (0)