Skip to content

Instantly share code, notes, and snippets.

@nextendweb-laszlo
Last active September 23, 2021 17:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nextendweb-laszlo/c94caf420eb8ba8943e33c2023c0ac82 to your computer and use it in GitHub Desktop.
Save nextendweb-laszlo/c94caf420eb8ba8943e33c2023c0ac82 to your computer and use it in GitHub Desktop.
A composer.json example with the Nextend Social Login Pro Addon repository.
{
"name": "acme/brilliant-wordpress-site",
"description": "My brilliant WordPress site",
"repositories":[
{
"type":"composer",
"url":"https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
},
{
"type": "composer",
"url": "https://api.nextendweb.com/v1/composer/",
"only": [
"nextendweb/*"
]
}
],
"require": {
"aws/aws-sdk-php":"*",
"wpackagist-plugin/akismet":"dev-trunk",
"wpackagist-plugin/wordpress-seo":">=7.0.2",
"wpackagist-theme/hueman":"*",
"nextendweb/nextend-social-login-pro": "dev-master"
},
"autoload": {
"psr-0": {
"Acme": "src/"
}
},
"extra": {
"installer-paths": {
"wp-content/mu-plugins/{$name}/": [
"wpackagist-plugin/akismet"
],
"wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment