Skip to content

Commit 6a3555b

Browse files
authored
Merge pull request #5 from descom-es/laravel_12_update
Laravel 12 update
2 parents 042fd3a + adc0188 commit 6a3555b

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
php: [8.2, 8.3, 8.4]
16+
php: [8.3, 8.4]
1717

1818
steps:
1919
- name: Checkout code

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"dev"
77
],
88
"require": {
9-
"php": "^8.2"
9+
"php": "^8.3"
1010
},
1111
"homepage": "https://github.com/descom-es/php-dev",
1212
"license": "MIT",
@@ -25,9 +25,9 @@
2525
"minimum-stability": "dev",
2626
"prefer-stable": true,
2727
"require-dev": {
28-
"friendsofphp/php-cs-fixer": "^3.35",
29-
"phpunit/phpunit": "^9.5|^10.0|^10.5",
30-
"phpstan/phpstan": "^1.8"
28+
"friendsofphp/php-cs-fixer": "^3.75",
29+
"phpstan/phpstan": "^2.1",
30+
"phpunit/phpunit": "^10.5|^11.5"
3131
},
3232
"autoload": {
3333
"psr-4": {

phpstan.neon.dist

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,3 @@ parameters:
66

77
# The level 9 is the highest level
88
level: 5
9-
10-
checkMissingIterableValueType: false

tests/CsFixerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ class CsFixerTest extends TestCase
99
{
1010
public function testExample()
1111
{
12-
$this->assertIsArray(CsFixer::rules());
12+
$this->assertTrue(CsFixer::rules()['@PSR12']);
1313
}
1414
}

0 commit comments

Comments
 (0)