http://getcomposer.org/doc/articles/handling-private-packages-with-satis.mdの指示に従ってSatis をセットアップしました。
私は手に入れました
php bin/satis build satis.json ./
しかし、次のエラーが発生します。
[Composer\Downloader\TransportException]
The 'https://bitbucket.org/api/1.0/repositories/companyName/myPackageName/tags' URL could not be accessed: HTTP/1.1 403 FORBIDD
EN
これは、プライベートリポジトリであるためだと推測しています。これを回避する方法を知っている人はいますか?
私のsatis.json:
{
"name": "Name Of Package",
"homepage": "https://bitbucket.org/companyName/packageName",
"repositories": [
{ "type": "vcs", "url": "https://bitbucket.org/companyName/packageName" }
],
"require-all": true
}