-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
36 lines (36 loc) · 829 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "log1x/laravel-webfonts",
"type": "package",
"description": "Download, install, and preload over 1500 Google fonts locally in your Laravel project",
"license": "MIT",
"authors": [
{
"name": "Brandon Nifong",
"email": "[email protected]",
"homepage": "https://github.com/log1x"
}
],
"autoload": {
"psr-4": {
"Log1x\\LaravelWebfonts\\": "src/"
}
},
"require": {
"php": ">=8.1",
"laravel/prompts": "^0.1|^0.2|^0.3",
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"laravel/pint": "^1.13",
"illuminate/support": "^10.0|^11.0",
"illuminate/console": "^10.0|^11.0",
"illuminate/http": "^10.0|^11.0"
},
"extra": {
"laravel": {
"providers": [
"Log1x\\LaravelWebfonts\\WebfontsServiceProvider"
]
}
}
}