ffmpeg-mappable-media/composer.json

74 lines
2 KiB
JSON
Raw Normal View History

2012-04-13 10:20:54 +02:00
{
"name": "php-ffmpeg/php-ffmpeg",
"type": "library",
2012-05-11 00:36:57 +02:00
"description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
"keywords": [
"video processing",
"video",
"audio processing",
"audio",
"avconv",
"ffmpeg",
"avprobe",
"ffprobe"
],
2012-04-13 10:20:54 +02:00
"license": "MIT",
"authors": [
{
"name": "Romain Neutron",
"email": "imprec@gmail.com",
"homepage": "http://www.lickmychip.com/"
},
{
"name": "Phraseanet Team",
"email": "info@alchemy.fr",
"homepage": "http://www.phraseanet.com/"
},
{
"name": "Patrik Karisch",
"email": "patrik@karisch.guru",
"homepage": "http://www.karisch.guru"
2016-12-21 10:26:51 -03:00
},
{
"name": "Romain Biard",
"email": "romain.biard@gmail.com",
"homepage": "https://www.strime.io/"
2017-11-05 16:50:24 +01:00
},
{
"name": "Jens Hausdorf",
"email": "hello@jens-hausdorf.de",
"homepage": "https://jens-hausdorf.de"
},
{
"name": "Pascal Baljet",
"email": "pascal@protone.media",
"homepage": "https://protone.media"
}
2012-04-13 10:20:54 +02:00
],
"require": {
"php": "^8.0 || ^8.1",
"evenement/evenement": "^3.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"spatie/temporary-directory": "^2.0",
"symfony/process": "^5.4 || ^6.0",
"symfony/cache": "^5.4 || ^6.0"
2012-04-13 10:20:54 +02:00
},
2012-10-30 23:52:10 +01:00
"suggest": {
"php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
2012-10-30 23:52:10 +01:00
},
2012-05-25 15:44:59 +02:00
"require-dev": {
"phpunit/phpunit": "^9.5.10"
2012-05-25 15:44:59 +02:00
},
2012-04-13 10:20:54 +02:00
"autoload": {
"psr-4": {
"FFMpeg\\": "src/FFMpeg",
"Alchemy\\BinaryDriver\\": "src/Alchemy/BinaryDriver"
2012-04-13 10:20:54 +02:00
}
2013-06-25 21:52:37 +02:00
},
"autoload-dev": {
"psr-4": {
"Alchemy\\Tests\\BinaryDriver\\": "tests/Alchemy/BinaryDriver",
"Tests\\FFMpeg\\": "tests/FFMpeg"
2013-06-25 21:52:37 +02:00
}
2012-10-31 00:07:15 +01:00
}
}