lispa / amos-project-management
Manage projects
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 200
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:component
This package is auto-updated.
Last update: 2020-05-17 15:16:20 UTC
README
Manage and Operate With Projects from design to production with community and components
Installation
-
The preferred way to install this extension is through composer.
Either run
composer require lispa/amos-project-management
or add
"lispa/amos-project-management": "~1.0"
to the require section of your
composer.json
file. -
Add module to your main config in common:
```php <?php 'modules' => [ 'project-management' => [ 'class' => 'lispa\amos\projectmanagement\Module' ], ], ```
Also, add these lines to your console config:
'controllerMap' => [ 'project-management' => [ 'class' => 'yii\console\controllers\MigrateController', 'migrationPath' => '@project-management/migrations' ], ],
-
Apply migrations
php yii migrate/up --migrationPath=@vendor/lispa/amos-project-management/src/migrations