ingalabs / image-bundle
此包已被废弃,不再维护。未建议替代包。
Symfony 图像服务组件
dev-master / 1.0.x-dev
2017-12-09 13:07 UTC
Requires
- php: >=5.5.9
- intervention/image: ^2.3
- sybio/gif-creator: ^1.0
- sybio/gif-frame-extractor: ^1.0
- symfony/symfony: ~2.7|~3.0|~4.0
- twig/twig: ^1.28|^2.0
Requires (Dev)
- matthiasnoback/symfony-dependency-injection-test: ^1.0
- phpunit/phpunit: ^4.0|^5.0
This package is auto-updated.
Last update: 2023-05-15 23:32:22 UTC
README
图像服务包。
安装
步骤 1: 下载包
打开命令行,进入您的项目目录,然后执行以下命令以下载此包的最新稳定版本
$ composer require inagalabs/image-bundle
此命令需要您已全局安装 Composer,具体请参阅 Composer 文档的安装章节。
步骤 2: 启用包
然后,通过将其添加到项目 app/AppKernel.php
文件中注册的包列表中来启用该包
<?php // ... class AppKernel extends Kernel { public function registerBundles() { $bundles = [ // ... new IngaLabs\Bundle\ImageBundle\IngaLabsImageBundle(), ]; // ... } // ... }
许可
此包遵循 MIT 许可协议。