-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 957 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 957 Bytes
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
{
"name": "telcolab/minify",
"description": "A Laravel's package that minifies blade files upon compiling.",
"homepage": "https://github.com/telcolab/minify",
"keywords": ["laravel", "blade", "minify"],
"support": {
"issues": "https://github.com/telcolab/minify/issues",
"source": "https://github.com/telcolab/minify"
},
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Haries Nur Ikhwan",
"email": "haries@telcolab.my"
}
],
"require": {
"php": ">=7.0",
"illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*",
"illuminate/view": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*"
},
"autoload": {
"psr-4": {
"TelcoLAB\\Minify\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"TelcoLAB\\Minify\\ServiceProvider"
]
}
}
}