forked from pedroborges/kirby-meta-tags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.09 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
{
"name": "wearejust/kirby-meta-tags",
"description": "HTML meta tags generator for Kirby 3.",
"keywords": ["kirby-plugin", "meta-tags", "open-graph", "twitter-cards", "json-ld"],
"license": "MIT",
"homepage": "https://github.com/wearejust/kirby-meta-tags",
"type": "kirby-plugin",
"authors": [
{
"name": "Cees van Egmond",
"email": "cees.vanegmond@wearejust.com"
},
{
"name": "Sietse Veenman",
"email": "sietse.veenman@wearejust.com"
},
{
"name": "Duncan Pronk",
"email": "duncan.pronk@wearejust.com"
}
],
"require": {
"php": ">=8.0",
"getkirby/composer-installer": "^1.1"
},
"autoload": {
"files": [
"helpers.php"
],
"psr-4": {
"Wearejust\\KirbyMetaTags\\": "src/"
}
},
"extra": {
"installer-name": "kirby-meta-tags",
"kirby-cms-path": false
},
"config": {
"allow-plugins": {
"getkirby/composer-installer": true
}
}
}