-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.35 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": "brightfish/media_analyzer",
"version": "2.3.2",
"description": "Analyze video,audio,image files (with ffmpeg)",
"keywords": [
"cinemapub",
"media_analyzer",
"brightfish",
"media",
"audio",
"video"
],
"homepage": "https://github.com/brightfish-be/media_analyzer",
"license": "MIT",
"authors": [
{
"name": "Peter Forret",
"email": "p.forret@brightfish.be",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"ext-simplexml": "*",
"nesbot/carbon": "^2.72|^3.1",
"psr/simple-cache": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^v3.56",
"phpunit/phpunit": "^9.0",
"vimeo/psalm": "^5.2"
},
"autoload": {
"psr-4": {
"Brightfish\\MediaAnalyzer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Brightfish\\MediaAnalyzer\\Tests\\": "tests"
}
},
"scripts": {
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"psalm": "vendor/bin/psalm",
"test": "vendor/bin/phpunit --coverage-html tests/coverage --testdox"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}