Last active
May 6, 2019 19:09
-
-
Save beaverbuilder/8ab6fd1f054582a1fe5ae053c3b75a55 to your computer and use it in GitHub Desktop.
This snippet is used in the following knowledge base article – https://kb.wpbeaverbuilder.com/article/220-installl-beaver-builder-via-composer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "package", | |
"package": { | |
"name": "beaver-builder/bb-plugin", | |
"type": "wordpress-plugin", | |
"version": "<VERSION_NUMBER>", | |
"dist": { | |
"type": "zip", | |
"url": "https://updates.wpbeaverbuilder.com/?fl-api-method=composer_download&download=bb-plugin-<VERSION>.zip&license=<LICENSE_KEY>" | |
}, | |
"require": { | |
"composer/installers": "v1.6.5" | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "package", | |
"package": { | |
"name": "beaver-builder/bb-theme", | |
"type": "wordpress-theme", | |
"version": "<VERSION_NUMBER>", | |
"dist": { | |
"type": "zip", | |
"url": "https://updates.wpbeaverbuilder.com/?fl-api-method=composer_download&download=bb-theme.zip&license=<LICENSE_KEY>" | |
}, | |
"require": { | |
"composer/installers": "v1.6.5" | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "package", | |
"package": { | |
"name": "beaver-builder/bb-theme-builder", | |
"type": "wordpress-plugin", | |
"version": "<VERSION_NUMBER>", | |
"dist": { | |
"type": "zip", | |
"url": "http://updates.wpbeaverbuilder.com/?fl-api-method=composer_download&download=bb-theme-builder.zip&license=<LICENSE_KEY>" | |
}, | |
"require": { | |
"composer/installers": "v1.6.5" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A bit more with
composer -vvv require beaver-builder/bb-plugin