Skip to content

Commit

Permalink
Get tinyMCE via composer
Browse files Browse the repository at this point in the history
  • Loading branch information
sreichel committed Nov 10, 2023
1 parent 0ac3f19 commit a48f34b
Show file tree
Hide file tree
Showing 3 changed files with 133 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
/app/etc/modules/Cm_RedisSession.xml
/lib/Credis

# TinyMCE library
/js/tinymce

# Add a base setup for running unit Tests with code coverage and send them to SonarCloud
# https://github.com/OpenMage/magento-lts/pull/1836
/dev/testfield
Expand Down
11 changes: 9 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@
"phpseclib/mcrypt_compat": "^2.0.3",
"phpseclib/phpseclib": "^3.0.14",
"shardj/zf1-future": "1.23.5",
"sreichel/composer-plugin-file-copier": "dev-develop",
"symfony/polyfill-php74": "^1.27",
"symfony/polyfill-php80": "^1.27",
"symfony/polyfill-php81": "^1.27"
"symfony/polyfill-php81": "^1.27",
"tinymce/tinymce": "^6.7"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
Expand Down Expand Up @@ -84,6 +86,10 @@
}
},
"extra": {
"file-copier" : {
"source": "tinymce/tinymce",
"target": "js/tinymce"
},
"magento-root-dir": ".",
"magento-deploystrategy": "copy",
"magento-deploystrategy-dev": "symlink",
Expand All @@ -109,7 +115,8 @@
"allow-plugins": {
"magento-hackathon/magento-composer-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"cweagans/composer-patches": true
"cweagans/composer-patches": true,
"sreichel/composer-plugin-file-copier": true
},
"platform": {
"php": "7.4"
Expand Down
124 changes: 121 additions & 3 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a48f34b

Please sign in to comment.