forked from alpshq/craft-share-previews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.07 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
{
"name": "alpshq/craft-share-previews",
"description": "Autogenerated open graph images for your entries.",
"type": "craft-plugin",
"keywords": ["share", "preview", "og", "image", "craft"],
"license": "proprietary",
"authors": [
{
"name": "Alps",
"homepage": "https://github.com/alpshq/crafts-share-previews"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/alpshq/craft-share-preview/issues?state=open",
"source": "https://github.com/alpshq/craft-share-preview",
"docs": "https://github.com/alpshq/craft-share-preview/blob/master/README.md"
},
"require": {
"ext-json": "*",
"craftcms/cms": "^4.0"
},
"autoload": {
"psr-4": {
"alps\\sharepreviews\\": "src/"
}
},
"extra": {
"name": "Share Previews",
"handle": "share-previews",
"class": "alps\\sharepreviews\\SharePreviews"
},
"require-dev": {
"symfony/var-dumper": "^5.2"
},
"config": {
"platform": {
"php": "8.0"
}
},
"scripts": {
"fix": "php-cs-fixer fix --config=.php_cs.php"
}
}