私は Magento の DevDocs を読み、この問題を Google で検索しましたが、通常の不足しているregistration.php
回答はここには当てはまりません。
私はリリースされた CE 2.0.0 バージョンを使用しており、最初の最小テスト モジュールを有効にしようとしていますmagento/vendor/
が、
bin/magento module:enable -c Tchsl_Test
結果:
不明なモジュール: 'Tchsl_Test'
これは、命名規則とモジュールのファイル位置に基づいていますvendor/magento/
私vendor/tchsl/module-test/etc/module.xml
が持っている
<config xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Tchsl_Test" />
</config>
私vendor/tchsl/module-test/registration.php
が持っている
<?php
\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::MODULE,
'Tchsl_Test',
__DIR__
);
私は何が欠けていますか?