-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
108 lines (108 loc) · 3.8 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "soluble/mediatools-cli",
"description": "CLI for FFMpeg video conversion, thumbnail, query and more !",
"license": "MIT",
"keywords": [
"video",
"transcode",
"ffmpeg",
"ffprobe",
"thumbnail",
"conversion",
"cli",
"console",
"soluble-mediatools"
],
"homepage": "https://github.com/soluble-io/soluble-mediatools-cli",
"type": "library",
"authors": [
{
"name": "Sébastien Vanvelthem",
"homepage": "https://github.com/belgattitude"
}
],
"bin": [
"bin/mediatools-cli.sh",
"bin/mediatools-cli.php"
],
"require": {
"php": "^7.1",
"ext-json": "*",
"ext-pcre": "*",
"psr/container": "^1.0",
"psr/http-message": "^1.0.1",
"psr/log": "^1.0",
"monolog/monolog": "^1.23",
"scriptfusion/byte-formatter": "^3.2",
"soluble/mediatools": "^2.0",
"symfony/console": "^4.3",
"symfony/cache": "^4.3",
"symfony/finder": "^4.3",
"symfony/polyfill-mbstring": "^1.9",
"zendframework/zend-servicemanager": "^3.4"
},
"require-dev" : {
"bamarni/composer-bin-plugin": "^1.2",
"captainhook/plugin-composer": "^4.0",
"consistence/coding-standard": "^3.8",
"fig/http-message-util": "^1.1.2",
"friendsofphp/php-cs-fixer": "^2.14.2",
"infection/infection": "^0.12",
"mikey179/vfsstream": "^1.6",
"phpstan/phpstan": "^0.11.4",
"phpstan/phpstan-phpunit": "^0.11",
"phpstan/phpstan-strict-rules": "^0.11",
"phpstan/phpstan-symfony": "^0.11.5",
"phpstan/phpstan-webmozart-assert": "^0.11.0",
"phpunit/phpunit": "^7.5 || ^8.0",
"roave/security-advisories": "dev-master",
"slevomat/coding-standard": "^5.0",
"squizlabs/php_codesniffer": "^3.4",
"vimeo/psalm": "^3.2.10"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"Soluble\\MediaTools\\Cli\\": "src/Cli/",
"Soluble\\MediaTools\\Preset\\": "src/Preset/"
}
},
"autoload-dev": {
"psr-4": {
"MediaToolsCliTest\\": "tests/unit",
"MediaToolsCliTest\\Util\\": "tests/util",
"MediaToolsCliTest\\Functional\\": "tests/functional"
}
},
"scripts": {
"check": [
"@cs-check",
"@phpstan",
"@psalm",
"@test:unit"
],
"fix": [
"@cs-fix"
],
"test": "vendor/bin/phpunit",
"test:unit": "vendor/bin/phpunit --testsuite=unit",
"test:mutation": "vendor/bin/infection --configuration=infection.json --test-framework=phpunit --test-framework-options='--testsuite=unit' --min-msi=40 --min-covered-msi=60 --threads=4",
"cs-check": "vendor/bin/php-cs-fixer --diff --dry-run -v fix --using-cache=false",
"cs-fix": "vendor/bin/php-cs-fixer -v fix --using-cache=false",
"cs-lint-fix": "vendor/bin/phpcbf; vendor/bin/php-cs-fixer -v fix",
"phpstan": "vendor/bin/phpstan analyse -l 7 -c phpstan.neon src tests",
"psalm": "vendor/bin/psalm --show-info=false",
"doc:install": "pip install -r requirements.txt --upgrade",
"doc:build": "mkdocs build",
"doc:serve": "mkdocs serve --dev-addr localhost:8094",
"doc:deploy": "mkdocs gh-deploy",
"phar:compile": "box compile",
"phar:info": "box info ./build/bin/mediatools.phar -l"
},
"archive": {
"exclude": [".travis", "infection.json", ".sami.php", "phpstan.neon", "tests", "docs", ".travis", ".travis.yml", ".codeclimate.yml", ".coveralls.yml", ".scrutinizer.yml", ".php_cs", ".gitignore", "phpcs.xml"]
}
}