open20/open20-microfrontend
There is no license information available for the latest version (dev-main) of this package.
Microfrontend
dev-main
2025-01-13 15:43 UTC
Requires
- php:>=8.2.0
- zircote/swagger-php:^4.7
- firebase/php-jwt:^5.0
- tuupola/base62:^2.0
- open20/open20-attributes:^1.0
- psr/log:^1.0
- monolog/monolog:^1.0
- guzzlehttp/guzzle:^6.0
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
Description of the module
Installation
The preferred way to install this extension is through composer.
Either run
`
bash composer require my-custom-module/my-custom-module`
or add
"my-custom-module/my-custom-module": "~1.0"
to the require section of your
composer.json
file.Add module to your main config in common:
```php <?php 'modules' => [ 'my-custom-module' => [ 'class' => 'my\custom\module\Module' ], ], ```
Also, add these lines to your console config:
'controllerMap' => [ 'project-management' => [ 'class' => 'yii\console\controllers\MigrateController', 'migrationPath' => '@my-custom-module/migrations' ], ],
Apply migrations
`
bash php yii migrate/up --migrationPath=@vendor/my-custom-module/my-custom-module/src/migrations`