Skip to content

Commit 9c6f227

Browse files
committed
updated composer.json to support laravel 12.0
1 parent 67c69a0 commit 9c6f227

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
"require": {
1818
"php": "^7.4|^8.0|^8.1|^8.2|^8.3",
1919
"guzzlehttp/guzzle": "^7.8",
20-
"illuminate/config": "^8.0|^9.0|^10.0|^11.0",
21-
"illuminate/database": "^8.0|^9.0|^10.0|^11.0",
22-
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
20+
"illuminate/config": "^8.0|^9.0|^10.0|^11.0|^12.0",
21+
"illuminate/database": "^8.0|^9.0|^10.0|^11.0|^12.0",
22+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
2323
"jeroenzwart/laravel-csv-seeder": "^1.6",
2424
"phpseclib/phpseclib": "^3.0",
2525
"vlucas/phpdotenv": "^5.5"

resync-tags.bat

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@echo off
2+
REM Delete all local tags
3+
for /f "delims=" %%a in ('git tag -l') do git tag -d %%a
4+
5+
REM Fetch all tags from the remote repository
6+
git fetch --tags

0 commit comments

Comments
 (0)