-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·67 lines (67 loc) · 2.01 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
59
60
61
62
63
64
65
66
67
{
"name": "zaengle/craft-sharingintents",
"description": "Generate social sharing intent URLs ",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"sharing intents"
],
"support": {
"docs": "https://github.com/zaengle/craft-sharing-intents/blob/master/README.md",
"issues": "https://github.com/zaengle/craft-sharing-intents/issues"
},
"license": "MIT",
"authors": [
{
"name": "Zaengle Corp",
"homepage": "https://zaengle.com/"
}
],
"require": {
"php": "^8.2 | ^8.3"
},
"require-dev": {
"symplify/easy-coding-standard": "^10.3",
"craftcms/cms": "^5.0.0-beta.1",
"craftcms/ecs": "dev-main",
"nunomaduro/collision": "^8.1",
"pestphp/pest": "^2.34",
"roave/security-advisories": "dev-latest",
"phpstan/phpstan": "^1.4",
"vlucas/phpdotenv": "^3.0"
},
"autoload": {
"psr-4": {
"zaengle\\sharingintents\\": "src/"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix"
},
"extra": {
"name": "Sharing Intents",
"handle": "sharing-intents",
"developer": "Zaengle Corp",
"developerUrl": "https://zaengle.com/",
"documentationUrl": "https://github.com/zaengle/craft-sharing-intents/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/zaengle/craft-sharing-intents/master/CHANGELOG.md",
"components": {
"share": "zaengle\\sharingintents\\services\\Share"
},
"class": "zaengle\\sharingintents\\SharingIntents"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true,
"pestphp/pest-plugin": true
}
}
}