forked from itiden/statamic-fa-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1009 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
41
42
43
44
{
"name": "itiden/statamic-fa-widget",
"description": "Statamic addon to add a widget with statistics from Fathom Analytics",
"license": "MIT",
"type": "statamic-addon",
"keywords": [
"laravel",
"statamic",
"fathom analytics"
],
"require": {
"php": "^8.0",
"statamic/cms": "^3.1 || ^4.0",
"pixelfear/composer-dist-plugin": "^0.1.4"
},
"autoload": {
"psr-4": {
"Itiden\\FA\\": "src"
}
},
"extra": {
"statamic": {
"name": "Statamic FA Widget",
"description": "Addon to to add a widget with statistics from Fathom Analytics"
},
"laravel": {
"providers": [
"Itiden\\FA\\ServiceProvider"
]
},
"download-dist": {
"url": "https://github.com/itiden/statamic-fa-widget/releases/download/{$version}/dist.tar.gz",
"path": "resources/dist"
}
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
},
"require-dev": {
"laravel/pint": "^1.10"
}
}