Magento帮助:通过composer安装Magento 2

zysjyyx4  于 2023-03-08  发布在  其他
关注(0)|答案(1)|浏览(201)

我尝试通过Composer安装Magento 2.4.5,但显示错误“无法找到带有版本2.4.5的包项目社区版”。
我在cmd中使用了文件夹C:\xampp\htdocs中的cmd:composer创建项目库url =https:repo.magento.com/项目社区版本:2.4.5。
以下是我的 composer .jason文件。

{
    "name": "mycompany/sample-module-minimal",
    "description": "A module that creates a page in the Magento admin area",
    "type": "magento2-module",
    "version": "2.4.5",
    "license": [
      "OSL-3.0",
      "AFL-3.0"
    ],
    "require": {
      "php": "~8.2.0"
    },
    "repositories": [
        {
            "type": "composer",
           "url": "https://repo.magento.com/"
       }
   ],
    "autoload": {
      "files": [ "registration.php" ],
      "psr-4": {
        "MyCompany\\ExampleAdminNewPage\\": ""
      }
    }
  }

相关问题