This repository has been archived by the owner on Aug 22, 2023. It is now read-only.
forked from HTMLMin/Laravel-HTMLMin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.9 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "htmlmin/htmlmin",
"description": "HTMLMin Is A Simple HTML Minifier For Laravel 5",
"keywords": ["laravel", "framework", "html minifier", "html", "minifier", "HTMLMin", "Laravel HTMLMin", "Laravel-HTMLMin"],
"license": "MIT",
"authors": [
{
"name": "Graham Campbell",
"email": "[email protected]"
},
{
"name": "Raza Mehdi",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/contracts": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
"illuminate/filesystem": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
"illuminate/http": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
"illuminate/routing": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
"illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
"illuminate/view": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
"mrclay/minify": "^2.2"
},
"require-dev": {
"graham-campbell/testbench": "^3.1|^4.0|^5.0",
"mockery/mockery": "^0.9.4|^1.0",
"phpunit/phpunit": "^4.8|^5.0|^6.0|^7.0|^8.0"
},
"autoload": {
"psr-4": {
"HTMLMin\\HTMLMin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HTMLMin\\Tests\\HTMLMin\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "5.0-dev"
},
"laravel": {
"providers": [
"HTMLMin\\HTMLMin\\HTMLMinServiceProvider"
],
"aliases": {
"HTMLMin": "HTMLMin\\HTMLMin\\Facades\\HTMLMin"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}