Php Satis-镜像存储库包类型

Php Satis-镜像存储库包类型,php,package,composer-php,components,satis,Php,Package,Composer Php,Components,Satis,我正在构建一个私有satis存储库(镜像代理) 有人知道如何让satis从存储库中定义的包创建tar吗 { "name": "Satis Configuration", "homepage": "https://satis.example.org", "repositories": [ { "type": "composer", "url": "https://packagist.org" }, { "type": "package", "pa

我正在构建一个私有satis存储库(镜像代理)

有人知道如何让satis从存储库中定义的包创建tar吗

{
  "name": "Satis Configuration",
  "homepage": "https://satis.example.org",
  "repositories": [
    { "type": "composer", "url": "https://packagist.org" },
    {
      "type": "package",
      "package": {
        "name": "components/placeholdersjs",
        "type": "component",
        "version": "4.0.1",
        "dist": {
          "url": "https://github.com/jamesallardice/Placeholders.js/archive/v4.0.1.zip",
          "type": "zip"
        },
        "extra": {
          "component": {
            "scripts": [
              "dist/placeholders.min.js",
              "dist/placeholders.jquery.min.js"
            ]
          }
        }
      }
    }
  ],
  "require": {
    "monolog/monolog": "*"
  },
  "require-dependencies": true,
  "archive": {
    "directory": "dist",
    "format": "tar",
    "skip-dev": true
  }
}