miloud-h / kdenlive-bundle
用于加载和使用kdenlive模式的包
dev-master
2023-09-06 03:04 UTC
Requires
- php: >=8.1
- symfony/dependency-injection: ^5.4 || ^6.0
- symfony/framework-bundle: ^5.4 || ^6.0
- symfony/property-access: ^6.2
- symfony/serializer: ^5.4 || ^6.0
Requires (Dev)
- phpunit/phpunit: ^9.6
This package is auto-updated.
Last update: 2024-09-06 04:59:38 UTC
README
确保已全局安装Composer,具体请参阅Composer文档中的安装章节。
使用Symfony Flex的应用程序
打开命令行,进入您的项目目录,然后执行以下命令:
$ composer require miloud-h/kdenlive-bundle
未使用Symfony Flex的应用程序
步骤1:下载包
打开命令行,进入您的项目目录,然后执行以下命令以下载此包的最新稳定版本:
$ composer require miloud-h/kdenlive-bundle
步骤2:启用包
然后,通过将包添加到项目配置文件config/bundles.php
中已注册的包列表中,来启用该包。
// config/bundles.php return [ // ... MiloudH\KdenliveBundle::class => ['all' => true], ];