This repository was archived by the owner on Sep 20, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
94 lines (94 loc) · 2.64 KB
/
composer.json
File metadata and controls
94 lines (94 loc) · 2.64 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "shinsenter/defer.php",
"description": "🚀 A PHP library that focuses on minimizing payload size of HTML document and optimizing processing on the browser when rendering the web page.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mai Nhut Tan",
"email": "shin@shin.company",
"homepage": "https://code.shin.company",
"role": "Owner"
}
],
"support": {
"issues": "https://code.shin.company/defer.php/issues",
"source": "https://code.shin.company/defer.php"
},
"funding": [
{
"type": "github",
"url": "https://code.shin.company/defer.php/stargazers"
},
{
"type": "paypal",
"url": "https://www.paypal.me/shinsenter"
},
{
"type": "patreon",
"url": "https://www.patreon.com/appseeds"
}
],
"keywords": [
"defer",
"defer.php",
"lazyload",
"loading lazy",
"lazy loading",
"lazyload image",
"lazyload video",
"lazyload font",
"lazyload js",
"lazyload css",
"lazyload wordpress",
"lazyload facebook",
"lazyload youtube",
"site performance",
"speed optimization",
"pagespeed",
"page speed",
"gtmetrix",
"avoid render blocking",
"dom optimization",
"html minify",
"php library"
],
"autoload": {
"psr-4": {
"AppSeeds\\": "src/"
}
},
"scripts": {
"fixer": "php-cs-fixer fix --config=.build/.php-cs-fixer.php --show-progress=dots --verbose --ansi",
"rector": "rector --config .build/rector.php --verbose --ansi",
"phpstan": "phpstan analyse -c .build/phpstan.neon --verbose --ansi",
"test": "@php tests/v2/test.php --ansi"
},
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"ext-libxml": "*",
"lib-libxml": ">=2.7.7",
"mrclay/jsmin-php": "^2.0",
"psr/simple-cache": "^1.0",
"symfony/css-selector": "^2.0 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/options-resolver": "^2.0 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/polyfill-mbstring": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
"phpstan/phpstan": "*",
"rector/rector": "*"
},
"suggest": {
"ext-mbstring": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {}
}
}