PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Vladimir Gorej   FFmpeg PHP   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: FFmpeg PHP
Manipulate video files using the ffmpeg program
Author: By
Last change: chore(release): cut the 3.2.2 release
chore(release): cut the 3.2.1 release
chore(release): cut the 3.2.0 release
chore(release): cut the 3.1.0 release
feat: add support for PHP 8.0.x (#51)

Closes #47
ci(GA): add GitHub Action workflow
test: update phpunit + remove deprecated asserts
Date: 11 days ago
Size: 1,554 bytes
 

Contents

Class file image Download
{ "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" } } }