Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 02744f3

Browse files
committed
Fixed CSS minifier
1 parent e0f2681 commit 02744f3

File tree

3 files changed

+292
-111
lines changed

3 files changed

+292
-111
lines changed

composer.json

Lines changed: 109 additions & 106 deletions
Original file line numberDiff line numberDiff line change
@@ -1,107 +1,110 @@
1-
{
2-
"name": "shinsenter/defer.php",
3-
"description": "🚀 A PHP library that focuses on minimizing payload size of HTML document and optimizing processing on the browser when rendering the web page.",
4-
"type": "library",
5-
"license": "MIT",
6-
"authors": [{
7-
"name": "Mai Nhut Tan",
8-
"email": "[email protected]",
9-
"homepage": "https://code.shin.company",
10-
"role": "Owner"
11-
}],
12-
"support": {
13-
"issues": "https://github.com/shinsenter/defer.php/issues",
14-
"source": "https://github.com/shinsenter/defer.php"
15-
},
16-
"funding": [{
17-
"type": "github",
18-
"url": "https://github.com/shinsenter/defer.php/stargazers"
19-
},
20-
{
21-
"type": "paypal",
22-
"url": "https://www.patreon.com/appseeds"
23-
},
24-
{
25-
"type": "patreon",
26-
"url": "https://www.patreon.com/shinsenter"
27-
}
28-
],
29-
"keywords": [
30-
"defer",
31-
"lazyload",
32-
"lazyload image",
33-
"lazyload video",
34-
"lazyload font",
35-
"lazyload js",
36-
"lazyload css",
37-
"lazyload wordpress",
38-
"lazyload facebook",
39-
"lazyload youtube",
40-
"lazyload laravel",
41-
"lazyload php",
42-
"performance",
43-
"website speed optimization",
44-
"page speed optimization",
45-
"pagespeed insight",
46-
"gtmetrix",
47-
"defer.js",
48-
"defer php",
49-
"lazy loading",
50-
"lazy loader",
51-
"lazy load",
52-
"avoid render blocking",
53-
"dom optimization",
54-
"php library"
55-
],
56-
"autoload": {
57-
"files": [],
58-
"psr-4": {
59-
"AppSeeds\\": "src/",
60-
"AppSeeds\\V1\\": "v1/"
61-
}
62-
},
63-
"scripts": {
64-
"offline": "@php offline.php",
65-
"fixer": "php-cs-fixer fix --show-progress=estimating --verbose --ansi",
66-
"test": "@php tests/v2/test.php --ansi",
67-
"test_v1": "@php tests/v1/test.php --ansi",
68-
"assets": [
69-
"npm i",
70-
"npm run js",
71-
"npm run css",
72-
"npm prune --production"
73-
],
74-
"docker": [
75-
"composer install --ansi",
76-
"@fixer",
77-
"@assets",
78-
"@offline",
79-
"@test"
80-
]
81-
},
82-
"require": {
83-
"php": ">=7.1.3 || ^8.0",
84-
"ext-libxml": "*",
85-
"lib-libxml": ">=2.7.7",
86-
"fasterimage/fasterimage": "^v1.5",
87-
"glenscott/url-normalizer": "^1.3",
88-
"mrclay/jsmin-php": "^2.4",
89-
"phpfastcache/phpfastcache": "^7.1",
90-
"scotteh/php-dom-wrapper": "~2.0",
91-
"symfony/options-resolver": "^3.0",
92-
"symfony/polyfill-mbstring": "^1.0"
93-
},
94-
"require-dev": {
95-
"friendsofphp/php-cs-fixer": "^2.0"
96-
},
97-
"suggest": {
98-
"ext-mbstring": "*"
99-
},
100-
"minimum-stability": "dev",
101-
"prefer-stable": true,
102-
"config": {
103-
"preferred-install": "dist",
104-
"optimize-autoloader": true,
105-
"sort-packages": true
106-
}
1+
{
2+
"name": "shinsenter/defer.php",
3+
"description": "🚀 A PHP library that focuses on minimizing payload size of HTML document and optimizing processing on the browser when rendering the web page.",
4+
"type": "library",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Mai Nhut Tan",
9+
"email": "[email protected]",
10+
"homepage": "https://code.shin.company",
11+
"role": "Owner"
12+
}
13+
],
14+
"support": {
15+
"issues": "https://github.com/shinsenter/defer.php/issues",
16+
"source": "https://github.com/shinsenter/defer.php"
17+
},
18+
"funding": [
19+
{
20+
"type": "github",
21+
"url": "https://github.com/shinsenter/defer.php/stargazers"
22+
},
23+
{
24+
"type": "paypal",
25+
"url": "https://www.patreon.com/appseeds"
26+
},
27+
{
28+
"type": "patreon",
29+
"url": "https://www.patreon.com/shinsenter"
30+
}
31+
],
32+
"keywords": [
33+
"defer",
34+
"lazyload",
35+
"lazyload image",
36+
"lazyload video",
37+
"lazyload font",
38+
"lazyload js",
39+
"lazyload css",
40+
"lazyload wordpress",
41+
"lazyload facebook",
42+
"lazyload youtube",
43+
"lazyload laravel",
44+
"lazyload php",
45+
"performance",
46+
"website speed optimization",
47+
"page speed optimization",
48+
"pagespeed insight",
49+
"gtmetrix",
50+
"defer.js",
51+
"defer php",
52+
"lazy loading",
53+
"lazy loader",
54+
"lazy load",
55+
"avoid render blocking",
56+
"dom optimization",
57+
"php library"
58+
],
59+
"autoload": {
60+
"files": [],
61+
"psr-4": {
62+
"AppSeeds\\": "src/",
63+
"AppSeeds\\V1\\": "v1/"
64+
}
65+
},
66+
"scripts": {
67+
"offline": "@php offline.php",
68+
"fixer": "php-cs-fixer fix --show-progress=estimating --verbose --ansi",
69+
"test": "@php tests/v2/test.php --ansi",
70+
"test_v1": "@php tests/v1/test.php --ansi",
71+
"assets": [
72+
"npm i",
73+
"npm run js",
74+
"npm run css",
75+
"npm prune --production"
76+
],
77+
"docker": [
78+
"composer install --ansi",
79+
"@fixer",
80+
"@assets",
81+
"@offline",
82+
"@test"
83+
]
84+
},
85+
"require": {
86+
"php": ">=7.1.3 || ^8.0",
87+
"ext-libxml": "*",
88+
"lib-libxml": ">=2.7.7",
89+
"fasterimage/fasterimage": "^v1.5",
90+
"glenscott/url-normalizer": "^1.3",
91+
"mrclay/jsmin-php": "^2.4",
92+
"phpfastcache/phpfastcache": "^7.1",
93+
"scotteh/php-dom-wrapper": "~2.0",
94+
"symfony/options-resolver": "^3.0",
95+
"symfony/polyfill-mbstring": "^1.0"
96+
},
97+
"require-dev": {
98+
"friendsofphp/php-cs-fixer": "^2.0"
99+
},
100+
"suggest": {
101+
"ext-mbstring": "*"
102+
},
103+
"minimum-stability": "dev",
104+
"prefer-stable": true,
105+
"config": {
106+
"preferred-install": "dist",
107+
"optimize-autoloader": true,
108+
"sort-packages": true
109+
}
107110
}

package-lock.json

Lines changed: 172 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)