-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
89 lines (89 loc) · 2.55 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "daun/statamic-mux",
"description": "Seamless video encoding and streaming using Mux on Statamic sites",
"license": "proprietary",
"type": "statamic-addon",
"keywords": [
"statamic",
"video",
"media",
"streaming",
"mux"
],
"authors": [
{
"name": "Philipp Daun",
"email": "[email protected]",
"homepage": "https://philippdaun.net",
"role": "Developer"
}
],
"homepage": "https://github.com/daun/statamic-mux",
"support": {
"email": "[email protected]"
},
"require": {
"php": "^8.1",
"firebase/php-jwt": "^6.10",
"guzzlehttp/guzzle": "^7.8",
"laravel/framework": "^9.21 || ^10.0 || ^11.0",
"muxinc/mux-php": "^3.14",
"srwiez/thumbhash": "^1.2",
"statamic/cms": "^4.0 || ^5.0"
},
"require-dev": {
"larastan/larastan": "^2.9",
"laravel/facade-documenter": "dev-main",
"laravel/pint": "^1.14",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^9.5",
"pestphp/pest": "^3.3",
"pestphp/pest-plugin-laravel": "^3.0",
"spatie/pest-plugin-snapshots": "^2.1"
},
"repositories": {
"facade-documenter": {
"type": "vcs",
"url": "[email protected]:laravel/facade-documenter.git"
}
},
"autoload": {
"psr-4": {
"Daun\\StatamicMux\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"pixelfear/composer-dist-plugin": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Daun\\StatamicMux\\ServiceProvider"
]
},
"statamic": {
"description": "Seamless video encoding and streaming using Mux on Statamic sites",
"name": "Mux Video"
}
},
"scripts": {
"analyse": "./vendor/bin/phpstan analyse --memory-limit=2G",
"facade": "php -f vendor/bin/facade.php -- \\\\Daun\\\\StatamicMux\\\\Facades\\\\Mux",
"format": "./vendor/bin/pint",
"lint": "./vendor/bin/pint --test",
"test": "./vendor/bin/pest",
"test:ci": "./vendor/bin/pest --coverage-clover coverage.xml",
"test:coverage": "./vendor/bin/pest --coverage"
}
}