-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
40 lines (40 loc) · 871 Bytes
/
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
{
"description": "Allows inlining and optimising styles for components in Neos CMS",
"type": "neos-plugin",
"name": "shel/critical-css",
"license": "GPL-3.0-or-later",
"keywords": [
"Neos",
"Neos CMS",
"CSS",
"Fusion",
"Styles",
"Components"
],
"require": {
"neos/neos": "~7.0 || ~8.0 || dev-master"
},
"authors": [
{
"name": "Sebastian Helzle",
"email": "support@helzle.it",
"homepage": "https://www.helzle.it",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Shel\\CriticalCSS\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Shel\\CriticalCSS\\Tests\\": "Tests"
}
},
"extra": {
"neos": {
"package-key": "Shel.CriticalCSS"
}
}
}