forked from vaersaagod/muxmate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.2 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
{
"name": "vaersaagod/muxmate",
"description": "Mux ado about streaming, mate!",
"type": "craft-plugin",
"version": "2.2.0",
"require": {
"php": ">=8.1",
"craftcms/cms": "^4.5.0",
"firebase/php-jwt": "^6.9",
"muxinc/mux-php": "^3.0"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main"
},
"autoload": {
"psr-4": {
"vaersaagod\\muxmate\\": "src/"
}
},
"license": "MIT",
"extra": {
"handle": "_muxmate",
"name": "MuxMate",
"developer": "Værsågod",
"documentationUrl": "",
"class": "vaersaagod\\muxmate\\MuxMate"
},
"support": {
"docs": "https://github.com/vaersaagod/muxmate/blob/master/README.md",
"issues": "https://github.com/vaersaagod/muxmate/issues"
},
"authors": [
{
"name": "Værsågod",
"homepage": "https://www.vaersaagod.no/"
}
],
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.1"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}