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(composer): update phpunit to v6.1.4
Date: 5 years ago
Size: 1,565 bytes
 

Contents

Class file image Download
{ "name": "char0n/ffmpeg-php", "type": "library", "description": "PHP wrapper for FFmpeg application", "version": "3.0.0", "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", "codesniffer:fix": "phpcbf", "test": "phpunit --configuration=\"tests/phpunit.xml\" --log-junit junit.xml", "docs": [ "@composer clean", "phpdoc -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": "6.1.4", "squizlabs/php_codesniffer": "3.0.0RC4", "phpdocumentor/phpdocumentor": "v2.9.0", "graphp/graphviz": "v0.2.1", "iautomation/filesystem-helper": "1.0.0" }, "autoload": { "psr-4": { "Char0n\\FFMpegPHP\\": "src", "Char0n\\FFMpegPHP\\Tests\\": "tests" } } }