# Best way to install private/paid plugins with Composer?

**URL:** https://discourse.roots.io/t/best-way-to-install-private-paid-plugins-with-composer/1045
**Category:** bedrock
**Tags:** composer
**Created:** 2014-01-10T12:50:26Z
**Posts:** 62
**Showing post:** 27 of 62

## Post 27 by @gabrielgiordan — 2016-11-29T10:53:45Z

Got to working!

For reference, I simply removed these lines from the repo’s **composer.json**

```
"source": {
    "url": "git@bitbucket.org:gabrielgiordan/my-plugin.git",
    "type": "git"
}
```

And keep it like this.

```
{
    "name": "gabrielgiordan/my-plugin",
    "description": "My Plugin",
    "type": "wordpress-plugin",
    "license": "proprietary",
    "authors": [
        {
            "name": "Gabriel Giordano"
        }
    ],
    "require": {
		"composer/installers": "^1.0.6"
	}
}
```

Deploy worked fine!

---

_[View the full topic](https://discourse.roots.io/t/best-way-to-install-private-paid-plugins-with-composer/1045)._
