1

composerでsentinelをインストールしようとしているとき

"repositories": 
    [
    {
        "type": "composer",
        "url": "https://packages.cartalyst.com"
    }
    ],
    "require": {
        "laravel/framework": "4.2.*",
        "cartalyst/sentinel": "1.0.*"
    },

作曲家の更新

次のエラーが表示されます。

Loading composer repositories with package information
Updating dependencies (including require-dev)
  - Installing cartalyst/support (v1.1.1)
    Downloading: connection...    Failed to download cartalyst/support from dist
: The "https://api.github.com/repos/cartalyst/support/zipball/1ba474441bc0d8579e
76d2eed67013f66dd97006" file could not be downloaded (HTTP/1.1 404 Not Found)
    Now trying to download from source
  - Installing cartalyst/support (v1.1.1)
    Cloning 1ba474441bc0d8579e76d2eed67013f66dd97006



  [RuntimeException]
  Failed to execute git clone --no-checkout "https://c81076146cfe987b80b6d1c3
  3f0c832271abd586:***@github.com/cartalyst/support.git" "C:\Users\Max\Dropbo
  x\Projects\Libeari-dev\vendor\cartalyst\support" && cd /D "C:\Users\Max\Dro
  pbox\Projects\Libeari-dev\vendor\cartalyst\support" && git remote add compo
  ser "https://:***@github.com/cartal
  yst/support.git" && git fetch composer
  Cloning into 'C:\Users\Max\Dropbox\Projects\Libeari-dev\vendor\cartalyst\su
  pport'...
  remote: Repository not found.
  fatal: repository 'https://:x-oauth
  -basic@github.com/cartalyst/support.git/' not found

composer を再インストールして、新しいプロジェクトを開始しようとしましたが、何も機能しませんか?

4

4 に答える 4

0

Sentinel が必要な場合は、サブスクリプションが必要です: ページの上部にあるhttps://cartalyst.com/manual/sentinelには、次のように書かれています: このパッケージには有効なサブスクリプションが必要です。アクセスを購読します。

于 2015-03-16T09:04:57.970 に答える
0

これが最も重要な手がかりです (皮肉なことに最後の行):

remote: Repository not found.
fatal: repository 'https://:x-oauth-basic@github.com/cartalyst/support.git/' not found

http://github.com/cartalyst/support.gitを見ると、実際には存在しないことがわかります。

于 2015-02-07T21:06:02.973 に答える