generated from glhd/laravel-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·51 lines (51 loc) · 1.04 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
{
"name": "glhd/remotion-sidecar",
"description": "",
"keywords": [
"laravel"
],
"authors": [
{
"name": "Chris Morrell",
"homepage": "http://www.cmorrell.com"
}
],
"license": "MIT",
"require": {
"illuminate/support": "^9.30",
"ext-json": "*",
"hammerstone/sidecar": "^0.3.12"
},
"require-dev": {
"orchestra/testbench": "^6.21|^7.0",
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.3",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Glhd\\RemotionSidecar\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Glhd\\RemotionSidecar\\Tests\\": "tests/"
}
},
"scripts": {
"fix-style": "vendor/bin/php-cs-fixer fix",
"check-style": "vendor/bin/php-cs-fixer fix --diff --dry-run"
},
"extra": {
"laravel": {
"providers": [
"Glhd\\RemotionSidecar\\Support\\RemotionSidecarServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}