-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
63 lines (63 loc) · 1.75 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
{
"name": "synchro/laravel-medialibrary-audio",
"description": "Audio file thumbnail generator for Spatie's Laravel Media Library",
"authors": [
{
"name": "Marcus Bointon",
"email": "[email protected]"
}
],
"keywords": [
"laravel-medialibrary",
"media",
"conversion",
"audio",
"laravel"
],
"homepage": "https://github.com/spatie/laravel-medialibrary",
"minimum-stability": "stable",
"license": "MIT",
"require": {
"php": "^8.0",
"illuminate/support": "^9.0 || ^10.0 || ^11.0",
"spatie/laravel-medialibrary": "^9.1.0 || ^10.0 || ^11.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6.19 || ^10.5 || ^11.1",
"php-ffmpeg/php-ffmpeg": "^1.2.0",
"laravel/framework": "^9.0 || ^10.0 || ^11.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"phpcompatibility/php-compatibility": "^9.3.5",
"phpstan/phpstan": "^1.10.66",
"squizlabs/php_codesniffer": "^3.9.1",
"orchestra/testbench": "^7.0 || ^8.0 || ^9.0",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"Synchro\\MediaLibrary\\Conversions\\ImageGenerators\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Synchro\\MediaLibrary\\Conversions\\ImageGenerators\\Tests\\": "tests/"
}
},
"scripts": {
"test:cs": "./vendor/bin/phpcs",
"test:unit": "./vendor/bin/pest --coverage --colors=always",
"test:types": "./vendor/bin/phpstan analyse --ansi --no-progress --memory-limit=0",
"test:psalm": "./vendor/bin/psalm --show-info=true",
"test": [
"@test:cs",
"@test:unit",
"@test:types",
"@test:psalm"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}