devgroup / yii2-extensions-manager
Manage and install your yii2 extensions in browser!
Installs: 595
Dependents: 7
Suggesters: 0
Security: 0
Stars: 5
Watchers: 9
Forks: 6
Open Issues: 4
Type:yii2-extension
Requires
Requires (Dev)
- devgroup/dotplant-dev: *
- dmstr/yii2-adminlte-asset: ~2.2
- yiisoft/yii2-bootstrap: ^2.0@dev
This package is auto-updated.
Last update: 2024-10-11 14:52:14 UTC
README
yii2-extensions-manager
Extension that allows you to install, uninstall, activate and deactivate Yii2 or DotPlant extensions right through your web browser.
Documentation
- Russian
- English
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist devgroup/yii2-extensions-manager "*"
or add
"devgroup/yii2-extensions-manager": "*"
After it you should execute migrations:
/usr/bin/php yii migrate --migrationPath=@DevGroup/DeferredTasks/migrations
This extension is a yii module because you should add the next code to your configuration file for an activation:
'modules' => [ 'extensions-manager' => [ 'class' => 'DevGroup\ExtensionsManager\ExtensionsManager', ], ],
Now the extension as available by route /extensions-manager/extensions/index
.
WARNING
Extension is now on the development stage. You can use it at your own risk.
IMPORTANT
You have to have correct version of the migrate controller equal or above 0.3.1. And double check
MigrateController::getMigrationHistory()
method supportsMigrateController::$disableLookup
property
Usage
Extensions manager has several options. It is strongly recommended to configure them, before you start.
Go to your-site.com/extensions-manager/extensions/config and fill fields with your own values:
- Github API access token - your personal Github API token. Without it you will be able to process only up to 60 requests per hour see.
- Github application name - see
- Path to Composer - your system path to composer. For Unix-like operating system you can simply run
which composer
in console and copy/paste output to this field
Other fields you can leave with default values:
- Packagist URL
- Github API URL
- Extensions storage
- Extensions per page
- Verbose output
Console commands
Each command can be run with standard ./yii
command:
extension/activate
Activates extension by it's composer name. Example:
./yii extension/activate devgroup/yii2-media-storage
extension/deactivate
Deactivates extension by it's composer name.
extension/update-config
Updates config.
Calculates differences between @vengor/composer/installed.json
and ExtensionsManager::$extensionsStorage
and writes new ExtensionsManager::$extensionsStorage
.
That should be done when you are out of sync and you don't see your extension in list.
extension/list
Show the list of all installed extensions, it's active state and composer package type.
Dependencies
TBD