forked from ceesvanegmond/minify
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcomposer.json
45 lines (45 loc) · 1.07 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
42
43
44
45
{
"name": "devfactory/minify",
"keywords": [
"minify",
"laravel5"
],
"description": "A package for minifying styles and javascript for laravel 5",
"license": "MIT",
"authors": [
{
"name": "Da Costa Alcindo",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"tedivm/jshrink": "~1.0",
"natxet/cssmin": "3.*",
"illuminate/filesystem": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"phpspec/phpspec": "^7.4",
"mikey179/vfsstream": "^1.6"
},
"autoload": {
"psr-0": {
"": "src/"
},
"psr-4": {
"Devfactory\\Minify\\": "src/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Devfactory\\Minify\\MinifyServiceProvider"
],
"aliases": {
"Minify": "Devfactory\\Minify\\Facades\\MinifyFacade"
}
}
}
}