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',
));
何か案が!!