Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 36f3bd1

Browse files
committedOct 27, 2024·
wip
1 parent f205b38 commit 36f3bd1

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed
 

‎composer.json

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{
22
"name": "foxws/laravel-user-cache",
3-
"description": "Simple Laravel caching trait for user data",
3+
"description": "Cache helper for auth models",
44
"keywords": [
5-
"Foxws",
5+
"foxws",
66
"laravel",
7-
"laravel-user-cache"
7+
"laravel-user-cache",
8+
"cache",
9+
"auth"
810
],
911
"homepage": "https://github.com/foxws/laravel-user-cache",
1012
"license": "MIT",
@@ -17,8 +19,13 @@
1719
],
1820
"require": {
1921
"php": "^8.2",
20-
"spatie/laravel-package-tools": "^1.16",
21-
"illuminate/contracts": "^10.0||^11.0"
22+
"illuminate/cache": "^10.0|^11.0",
23+
"illuminate/console": "^10.0|^11.0",
24+
"illuminate/container": "^10.0|^11.0",
25+
"illuminate/contracts": "^10.0||^11.0",
26+
"illuminate/support": "^10.0|^11.0",
27+
"nesbot/carbon": "^2.63|^3.0",
28+
"spatie/laravel-package-tools": "^1.16"
2229
},
2330
"require-dev": {
2431
"laravel/pint": "^1.14",
@@ -35,8 +42,7 @@
3542
},
3643
"autoload": {
3744
"psr-4": {
38-
"Foxws\\UserCache\\": "src/",
39-
"Foxws\\UserCache\\Database\\Factories\\": "database/factories/"
45+
"Foxws\\UserCache\\": "src/"
4046
}
4147
},
4248
"autoload-dev": {

0 commit comments

Comments
 (0)
Please sign in to comment.