- This topic has 3 replies, 2 voices, and was last updated 8 years ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
Forums › Forums › Search & Filter Pro › Install PRO via composer
Hiya,
I wanted to check how I would install the pro version via composer. For example I have a couple of other PRO (i.e. non WP plugins dir) plugins being installed via git etc, and I would like to be able to include the plugin using Bedrock & Composer. Is this possible?
Kind regards
FYI to anyone looking for answer:
In your composer.json file add this in the repositories section:
"repositories": [
<strong> {
"type": "package",
"package": {
"name": "search-filter/search-filter-pro",
"version": "2.3.4",
"type": "wordpress-plugin",
"dist": {
"type": "zip",
"url": "***Your PRO developer license download url**"
}
}
}</strong>
]
Then in the require section:
"require": {
<strong> "search-filter/search-filter-pro": "*"</strong>
},