-
-
Notifications
You must be signed in to change notification settings - Fork 94
/
composer.json
55 lines (55 loc) · 1.52 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
{
"name": "char0n/ffmpeg-php",
"type": "library",
"description": "PHP wrapper for FFmpeg application",
"version": "3.2.2",
"keywords": ["ffmpeg", "video", "audio"],
"homepage": "https://github.com/char0n/ffmpeg-php",
"license": "BSD-3-Clause",
"authors": [
{
"name": "char0n (Vladimír Gorej)",
"email": "[email protected]",
"homepage": "https://www.linkedin.com/in/vladimirgorej/",
"role": "Software engineer"
}
],
"scripts": {
"codesniffer": "phpcs --standard=\"phpcs.xml\"",
"codesniffer:fix": "phpcbf",
"test": "phpunit --configuration=\"tests/phpunit.xml\" --log-junit junit.xml",
"docs": [
"@composer clean",
"phpdoc run -d ./src/ -t docs"
],
"clean": "@php scripts/rimraf.php docs"
},
"archive": {
"exclude": [
".circleci/",
"scripts/",
"tests/",
".editorconfig",
".gitignore",
"phpcs.xml"
]
},
"require": {
"php": ">=7",
"ext-mbstring": "*",
"ext-gd": "*",
"ext-xml": "*"
},
"require-dev": {
"phpunit/phpunit": "8.5.21",
"squizlabs/php_codesniffer": "3.6.1",
"phpdocumentor/phpdocumentor": "3.1.2",
"iautomation/filesystem-helper": "1.0.0"
},
"autoload": {
"psr-4": {
"Char0n\\FFMpegPHP\\": "src",
"Char0n\\FFMpegPHP\\Tests\\": "tests"
}
}
}