# 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:** 11 of 62

## Post 11 by @ttss — 2014-07-30T15:38:42Z

think I resolved it using zip files:

```
{
  "name": "TTSS",
  "homepage": "http://satis.ttss.ch",

  "repositories": [
    {
      "type": "package",
      "package": {
        "name": "themeco/x-shortcodes",
        "description": "Includes all shortcode functionality for X",
        "keywords": ["themeco","x-shortcodes"],
        "license": "LGPL-3.0+",
        "authors": [
          {
            "name":"Themeco",
            "homepage":"http://theme.co"
          }
        ],
        "version": "2.3.3",
        "dist": {
          "url": "http://satis.ttss.ch/files/x-shortcodes.zip",
          "type": "zip"
        },
        "type": "wordpress-plugin",
        "require": {
            "php": ">=5.3.2",
            "composer/installers": "*"
        }
      }
    }
  ],
  "require-all": true
}
```

---

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