-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
78 lines (78 loc) · 2.32 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "abordage/laravel-html-min",
"description": "HtmlMin is very simple (and very fast) html compression package for Laravel",
"license": "MIT",
"keywords": [
"html compress",
"html minification",
"html minifier",
"html minify",
"html min"
],
"authors": [
{
"name": "Pavel Bychko",
"email": "box@abordage.dev",
"role": "Developer"
}
],
"homepage": "https://github.com/abordage/laravel-html-min",
"require": {
"php": ">=7.4",
"abordage/html-min": "^0.2.1",
"illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"ext-json": "*",
"friendsofphp/php-cs-fixer": "^3.0",
"nunomaduro/collision": "^5.0 || ^6.0 || ^7.0 || ^8.0",
"nunomaduro/larastan": "^1.0 || ^2.0",
"orchestra/testbench": "^6.0 || ^7.0 || ^8.0 || ^9.0",
"phpunit/phpunit": "^9.6 || ^10.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Abordage\\LaravelHtmlMin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Abordage\\LaravelHtmlMin\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"aliases": {
"HtmlMin": "Abordage\\LaravelHtmlMin\\Facades\\HtmlMin"
},
"providers": [
"Abordage\\LaravelHtmlMin\\HtmlMinServiceProvider"
]
}
},
"scripts": {
"phpcsf": "vendor/bin/php-cs-fixer fix --diff",
"phpstan:generate-baseline": "vendor/bin/phpstan --generate-baseline",
"test:all": [
"@test:phpcsf",
"@test:phpstan",
"@test:phpunit"
],
"test:phpcsf": "vendor/bin/php-cs-fixer fix --dry-run",
"test:phpstan": "vendor/bin/phpstan analyse",
"test:phpunit": "vendor/bin/phpunit --colors=always"
},
"scripts-descriptions": {
"phpcsf": "Run PHP-CS-Fixer fix",
"phpstan:generate-baseline": "Generate baseline for PHPStan",
"test:all": "Run all code analysis and tests",
"test:phpcsf": "Run PHP-CS-Fixer test",
"test:phpstan": "Run PHPStan",
"test:phpunit": "Run PHPUnit"
}
}