-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.39 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
{
"name": "fork/craft-altify",
"description": "Generates alt texts for images using different services that can be chosen from.",
"type": "craft-plugin",
"license": "mit",
"support": {
"email": "[email protected]",
"issues": "https://github.com/fork/craft-altify/issues?state=open",
"source": "https://github.com/fork/craft-altify",
"docs": "https://github.com/fork/craft-altify",
"rss": "https://github.com/fork/craft-altify/releases.atom"
},
"require": {
"php": ">=8.0.2",
"craftcms/cms": "^4.5.0",
"deeplcom/deepl-php": "^1.7"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main"
},
"autoload": {
"psr-4": {
"fork\\altify\\": "src/"
}
},
"extra": {
"handle": "altify",
"name": "Altify",
"developer": "Fork",
"documentationUrl": "https://github.com/fork/craft-altify"
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.0.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true,
"php-http/discovery": true
}
}
}