1

symfony の最新バージョンに AdmingeneratorGeneratorBundle をインストールしようとしていますが、いくつかの問題がありました

最初にcomposerを使用しようとしましたが、このエラーが発生しました

Loading composer repositories with package information
Updating dependencies
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - The requested package cedriclombardot/admingenerator-generator-bundle could not be found in any version, there may be a typo in the package name.
  Problem 2
    - The requested package knplabs/knp-menu-bundle master could not be found.

最後に、git を使用してすべてのベンダーをインストールしました

このベンダーのインストールは広範すぎるため、TwigGenerator をインストールする前に実行する必要があります

php app/console admin:setup

しかし、私はこのエラーを取得します

PHP Fatal error:  Call to undefined method Composer\Autoload\ClassLoader::registerNamespaces() in 

autoLoad ファイルの 14 行目にはこれが含まれています。

$loader->registerNamespaces(array(
    'Admingenerator'    => array(__DIR__.'/../src', __DIR__.'/../vendor/bundles'),
    'Sensio\Bundle'     => __DIR__.'/../vendor/bundles',
    'Knp\Bundle' => __DIR__.'/../vendor/bundles',
    'Knp\Menu'   => __DIR__.'/../vendor/KnpMenu/src',
));

何か案が!!

4

1 に答える 1

2

同様の問題がありましたが、git を使用して手動でインストールする代わりに、minimum-stabilityフラグをdevinに変更しましたcomposer.json

{
    "minimum-stability": "dev",
    "name": "symfony/framework-standard-edition",
    "description": "The \"Symfony Standard Edition\" distribution",

そして、これらの依存関係を追加しました:

"require": {
    ...
    "knplabs/knp-menu-bundle": "dev-master",
    "cedriclombardot/admingenerator-generator-bundle": "dev-master"
于 2013-01-08T10:03:48.653 に答える