videocutting/composer.json
Daniel Siepmann 808da86d12
Migrate everything to latest versions
Use newest symfony version, newest PHP and newest PHPUnit.
Remove prophecy dependency.
2023-02-07 08:03:10 +01:00

26 lines
579 B
JSON

{
"name": "danielsiepmann/videocutting",
"description": "Allows to cut videos using ffmpeg.",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Daniel Siepmann",
"email": "coding@daniel-siepmann.de"
}
],
"autoload": {
"psr-4": {
"DanielSiepmann\\Videcutting\\": "src/"
}
},
"require": {
"php": "8.2.*",
"symfony/console": "^6.2",
"symfony/process": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
}
}