abcms / yii2-gallery
There is no license information available for the latest version (v0.3.0) of this package.
Package info
github.com/dsoft/yii2-abcms-gallery
Type:yii2-extension
pkg:composer/abcms/yii2-gallery
v0.3.0
2016-10-21 13:24 UTC
Requires
- abcms/yii2-library: >=0.2.1
- yiisoft/yii2: *
- yiisoft/yii2-imagine: *
This package is auto-updated.
Last update: 2026-03-09 03:41:53 UTC
README
Simple image gallery admin module for yii2.
Installation:
composer require abcms/yii2-gallery
Run the database migration:
./yii migrate --migrationPath=@vendor/abcms/yii2-gallery/migrations
Configuration:
Add module to the admin modules configuration array:
'modules' => [ 'gallery' => [ 'class' => 'abcms\gallery\module\Module', ], ],
Add categories and image sizes to params.php under gallery key:
'gallery' => [ 'categories' => [ 1 => [ 'name' => 'News', 'sizes' => [ 'small' => [ 'width' => 440, 'height' => 440, ], ], ], ], ],