-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
41 lines (41 loc) · 1.11 KB
/
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
37
38
39
40
41
{
"name": "digitallyhappy/assets",
"description": "Dead-simple way to load CSS or JS assets only once per page, when using Laravel 8+.",
"license": "MIT",
"authors": [
{
"name": "Cristian Tabacitu",
"email": "hello@tabacitu.ro",
"homepage": "https://tabacitu.ro"
}
],
"homepage": "https://github.com/digitallyhappy/assets",
"keywords": ["Laravel", "Assets", "Load CSS once", "Load JS once"],
"require": {
"laravel/framework": "^10|^9.0|^8.0"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"orchestra/testbench": "~5|~6|^7.0|^8.0"
},
"autoload": {
"psr-4": {
"DigitallyHappy\\Assets\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DigitallyHappy\\Assets\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"DigitallyHappy\\Assets\\AssetsServiceProvider"
],
"aliases": {
"Assets": "DigitallyHappy\\Assets\\Facades\\Assets"
}
}
}
}