-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
35 lines (35 loc) · 858 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
{
"name": "gioppy/statamic-metatags",
"description": "An addon for Statamic 3 to manage and customize any meta tag.",
"autoload": {
"psr-4": {
"Gioppy\\StatamicMetatags\\": "src"
}
},
"authors": [
{
"name": "Giovanni Buffa",
"email": "[email protected]"
}
],
"extra": {
"statamic": {
"name": "Meta tags",
"description": "An addon for Statamic 3 to manage and customize any meta tag."
},
"laravel": {
"providers": [
"Gioppy\\StatamicMetatags\\ServiceProvider"
]
}
},
"require": {
"php": "^8.1",
"statamic/cms": "^4.0|^5.0"
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": false
}
}
}