- Платформа: 1С-Битрикс
- Маркетплейс: http://marketplace.1c-bitrix.ru/solutions/sprint.editor/
- Документация: https://github.com/andreyryabin/sprint.editor/wiki
- Группа в телеграм: https://t.me/sprint_editor
А также всем помощникам!
https://github.com/andreyryabin/sprint.editor/blob/master/contributors.txt
Пример вашего composer.json с установкой модуля в bitrix/modules/ с копированием скриптов админки в bitrix/admin/sprint.editor/ и компонента редактора для публичной части в bitrix/components/sprint.editor/blocks/
{
"extra": {
"copy-file": {
"bitrix/modules/sprint.editor/install/admin/": "bitrix/admin/",
"bitrix/modules/sprint.editor/install/components/": "bitrix/components/"
},
"installer-paths": {
"bitrix/modules/{$name}/": ["type:bitrix-module"]
}
},
"require": {
"andreyryabin/sprint.editor": "*",
"slowprog/composer-copy-file": "~0.3"
},
"scripts": {
"post-install-cmd": [
"SlowProg\\CopyFile\\ScriptHandler::copy"
],
"post-update-cmd": [
"SlowProg\\CopyFile\\ScriptHandler::copy"
]
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}