-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
58 lines (58 loc) · 1.4 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
{
"name": "balazscsaba2006/amplify",
"description": "Twig filter for the Craft CMS 3 to optimize rich text content for Google AMP.",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"AMP",
"amplify",
"Craft amp",
"Craft accelerated mobile pages"
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/balazscsaba2006/craft3-amplify/issues?state=open",
"source": "https://github.com/balazscsaba2006/craft3-amplify",
"docs": "https://github.com/balazscsaba2006/craft3-amplify"
},
"license": "proprietary",
"authors": [
{
"name": "Human Direct",
"homepage": "https://humandirect.eu"
}
],
"require": {
"php": "^8.0.2|^9.0",
"craftcms/cms": "^4.0.0",
"fasterimage/fasterimage": "^1.5"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"files": [
"src/lib/simple_html_dom.php"
],
"psr-4": {
"humandirect\\amplify\\": "src/"
}
},
"extra": {
"name": "Amplify",
"handle": "amplify",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/balazscsaba2006/craft3-amplify/master/CHANGELOG.md",
"class": "humandirect\\amplify\\Amplify"
},
"require-dev": {
"craftcms/rector": "dev-main"
}
}