arter / amos-slideshow
Sistema AMOS per lo slideshow
Installs: 590
Dependents: 0
Suggesters: 0
Security: 0
Type:component
pkg:composer/arter/amos-slideshow
Requires
- php: >=5.4.0
- arter/amos-admin: >=1.8
- arter/amos-core: ^1.9.50
- arter/amos-dashboard: ^1.8.15
- yiidoc/yii2-redactor: *
This package is auto-updated.
Last update: 2025-10-07 13:06:00 UTC
README
Plugin per rappresentare mediante modali delle informazioni sulla base della rotta e del ruolo dell'utente
Installation
The only things you need is to require thhis package and enable the module in your config
bash
composer require "arter/amos-slideshow:^1.4"
[PLATFORM]/backend/config/main.php
return [
...
'modules' => array_merge(require(__DIR__ . '/modules.php'), [
...
'slideshow' => [
'class' => 'arter\amos\slideshow\AmosSlideshow'
]
...
[PLATFORM]/console/config/main.php
return [
...
'controllerMap' => [
'migrate' => [
...
'migrationLookup' => array_merge(require(__DIR__ . '/migrations.php'), [
...
'@vendor/arter/amos-slideshow/src/migrations',
...
])
]
...
],
]
[PLATFORM]/backend/config/params-local.php
return [
...
'slideshow' => true
]