arter/amos-slideshow

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

Sistema AMOS per lo slideshow

1.4.11 2022-05-04 16:00 UTC

This package is auto-updated.

Last update: 2024-04-19 14:59:20 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
]