im/vendor/char0n/ffmpeg-php/composer.json

56 lines
1.5 KiB
JSON
Executable File

{
"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": "vladimir.gorej@gmail.com",
"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"
}
}
}