There is no license information available for the latest version (dev-master) of this package.
sviluppo sostenibile enti
dev-master
2021-06-08 16:31 UTC
Requires
- php:>=5.4.0
- elitedivision/amos-core:^1.9.60
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
News module for Ancisalute
Installation
You need to require this package and enable the module in your configuration.
add to composer requirements in composer.json
"sviluppo-sostenibile/enti": "dev-master as 1.0.0",
or run command bash:
composer require "sviluppo-sostenibile/enti": "dev-master",
Add module to your modules-amos config in backend:
<?php
$config = [
'modules' => [
'sviluppo-sostenibile' => [
'class' => 'sviluppo-sostenibile\enti\Module',
],
],
];
Add configurations to i18n component in components-others.php in common as follows
'i18n' => [
'translations' => [
'*' => [
'extraCategoryPaths' => [
'amosenti' => '@vendor/sviluppo-sostenibile/enti/src/i18n',
],
],
],
],
add enti migrations to console modules (console/config/migrations-amos.php):
'@vendor/sviluppo-sostenibile/enti/src/migrations'