Skip to content

Commit 1eaceac

Browse files
authored
⬆ Laravel 11 (#69)
* 🙈 Add `composer.lock` to `.gitignore` * 🔥 Remove the `composer.lock` file from the project * ⬆ Bump dependencies * ➕ Add `guzzlehttp/guzzle` to the project * 🚨 Run Pint
1 parent b821b51 commit 1eaceac

File tree

4 files changed

+10
-3544
lines changed

4 files changed

+10
-3544
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
/vendor
1+
/vendor
2+
composer.lock

composer.json

+7-6
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,13 @@
2424
},
2525
"require": {
2626
"php": "^8.0",
27-
"illuminate/console": "^9.0|^10.0",
28-
"illuminate/support": "^9.0|^10.0",
29-
"illuminate/http": "^9.0|^10.0"
27+
"illuminate/console": "^9.0|^10.0|^11.0",
28+
"illuminate/support": "^9.0|^10.0|^11.0",
29+
"illuminate/http": "^9.0|^10.0|^11.0",
30+
"guzzlehttp/guzzle": "^7.0"
31+
},
32+
"require-dev": {
33+
"laravel/pint": "^1.13"
3034
},
3135
"extra": {
3236
"laravel": {
@@ -39,8 +43,5 @@
3943
"lint": [
4044
"phpcs --ignore=vendor,examples --extensions=php --standard=PSR12 ."
4145
]
42-
},
43-
"require-dev": {
44-
"laravel/pint": "^1.13"
4546
}
4647
}

0 commit comments

Comments
 (0)