Skip to content

Commit 0b1a565

Browse files
authored
Laravel 12 support (#35)
* update: added laravel 12 to supported versions * build: pinned pint
1 parent 150d5af commit 0b1a565

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

composer.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,20 @@
2121
},
2222
"require": {
2323
"php": "^8.1||^8.2||^8.3||^8.4",
24-
"laravel/framework": "^10.0|^11.0"
24+
"laravel/framework": "^10.0|^11.0|^12.0"
2525
},
2626
"require-dev": {
27-
"orchestra/testbench": "^8.0|^9.0",
28-
"phpunit/phpunit": "^10.0|^11.0",
29-
"laravel/pint": "^1.19"
27+
"orchestra/testbench": "^8.0|^9.0|^10.0",
28+
"phpunit/phpunit": "^10.0|^11.5",
29+
"laravel/pint": "1.19"
30+
},
31+
"scripts": {
32+
"check-code": [
33+
"@lint",
34+
"@test"
35+
],
36+
"lint": "@php vendor/bin/pint --test",
37+
"lint:fix": "@php vendor/bin/pint",
38+
"test": "@php vendor/bin/phpunit"
3039
}
3140
}

0 commit comments

Comments
 (0)