-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1021 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 1021 Bytes
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
{
"name": "rocket-park/craft-mux",
"description": "MUX is a Craft CMS plugin used to upload and manage videos using the MUX service.",
"type": "craft-plugin",
"license": "proprietary",
"authors": [
{
"name": "Rocket Park",
"homepage": "https://rocketpark.com"
}
],
"support": {
"email": "support@rocketpark.com"
},
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0.0",
"muxinc/mux-php": ">=5.1.0",
"firebase/php-jwt": ">=v6.11.1"
},
"autoload": {
"psr-4": {
"rocketpark\\mux\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"handle": "mux",
"name": "Mux",
"developer": "Rocket Park",
"documentationUrl": "https://rocketpark.com/mux-plugin",
"changelogUrl": "https://raw.githubusercontent.com/rocket-park/craft-5/craft-mux/CHANGELOG.md",
"class": "rocketpark\\mux\\Mux"
}
}