forked from octoper/statamic-inline-assets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 857 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
{
"name": "octoper/statamic-inline-assets",
"license": "MIT",
"type": "statamic-addon",
"description": "Inline CSS or JS file for Statamic 3",
"authors": [{
"name": "Vaggelis Yfantis",
"email": "[email protected]",
"homepage": "https://octoper.me"
}],
"autoload": {
"psr-4": {
"Octoper\\InlineAssets\\": "src"
}
},
"extra": {
"statamic": {
"name": "Inline Assets",
"description": "Inline CSS or JS file for Statamic 3"
},
"laravel": {
"providers": [
"Octoper\\InlineAssets\\ServiceProvider"
]
}
},
"require": {
"php": ">=7.4",
"statamic/cms": "^3.0",
"illuminate/support": "^7.0 || ^8.0 || ^9.0",
"matthiasmullie/minify": "^1.3"
}
}