arter/amos-slideshow

There is no license information available for the latest version (1.5.0) of this package.

Sistema AMOS per lo slideshow

Maintainers

👁 art-er

Package info

repo.aster.it/elitedivision/amos-slideshow

Homepage

Issues

Forum

Wiki

Type:component

pkg:composer/arter/amos-slideshow

Statistics

Installs: 601

Dependents: 0

Suggesters: 0

1.5.0 2024-03-19 14:52 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

Unknown License b47dba6544156af82017ea08a9ec6f0709f65294

slideshowyii2amos

This package is auto-updated.

Last update: 2026-06-07 14:46:21 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
]