Composer php 类型3.类型3 CMS内的冲浪安装

Composer php 类型3.类型3 CMS内的冲浪安装,composer-php,typo3,typo3-7.6.x,typo3-surf,Composer Php,Typo3,Typo3 7.6.x,Typo3 Surf,刚刚尝试在TYPO3 CMS 7.6.10安装中安装TYPO3 Surf,但没有成功 C:\xampp\htdocs\typo3_src-7.6.10>composer require typo3/surf=dev-master ./composer.json has been updated Loading composer repositories with package information Updating dependencies (including require-dev

刚刚尝试在TYPO3 CMS 7.6.10安装中安装TYPO3 Surf,但没有成功

C:\xampp\htdocs\typo3_src-7.6.10>composer require typo3/surf=dev-master
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - Installation request for typo3/surf dev-master -> satisfiable by typo3/surf[dev-master].
    - typo3/surf dev-master requires symfony/console ^2.8|^3.0 -> satisfiable by symfony/console[2.8.x-dev, 3.0.x-dev, 3.1.x-dev, 3.2.x-dev, v2.8.0, v2.8.0-BETA1, v2.8.1, v2.8.2, v2.8.3, v2.8.4, v2.8.5, v2.8.6, v2.8.7, v2.8.8, v2.8.9, v3.0.0, v3.0.0-BETA1, v3.0.1, v3.0.2, v3.0.3, v3.0.4, v3.0.5, v3.0.6, v3.0.7, v3.0.8, v3.0.9, v3.1.0, v3.1.0-BETA1, v3.1.0-RC1, v3.1.1, v3.1.2, v3.1.3] but these conflict with your requirements or minimum-stability.


Installation failed, reverting ./composer.json to its original content.

目前没有实际使用surf,请查看最新的beta,因为现在使用的是phar文件。因此,您不需要安装任何composer,也不会遇到现在的麻烦


签出

当前未实际使用surf,请签出最新的Beta,因为现在使用的是phar文件。因此,您不需要安装任何composer,也不会遇到现在的麻烦


查看目前仅适用于TYPO3 CMS 8及更新版本

TYPO3 CMS 7使用旧版本的symfony/控制台


目前仅适用于TYPO3 CMS 8及更新版本

TYPO3 CMS 7使用旧版本的symfony/控制台


自从这个问题被提出以来,为了在最近的时间里提供一个替代方案,有很多人开始转向Docker,我知道的最简单的方法就是使用DDEV,这是一种开源的方法。目前,DDEV Live的开源版本还不可用,但我们正在使用DDEV Local进行所有本地开发,并且Live应该很快就会出现,至少他们是这么说的。DRUD还直接提供DDEV Live,这将是一个托管解决方案,听起来它的设置非常健壮,尽管我还没有亲自使用过


自从这个问题被提出以来,为了在最近的时间里提供一个替代方案,有很多人开始转向Docker,我知道的最简单的方法就是使用DDEV,这是一种开源的方法。目前,DDEV Live的开源版本还不可用,但我们正在使用DDEV Local进行所有本地开发,并且Live应该很快就会出现,至少他们是这么说的。DRUD还直接提供DDEV Live,这将是一个托管解决方案,听起来它的设置非常健壮,尽管我还没有亲自使用过


我在使用Windows,如何执行phar文件这应该与我在使用Windows的composer phar文件的结果相同,如何执行phar文件这应该与composer phar文件的结果相同,同时更新了TYPO3 7.6.x依赖项,使其能够与TYPO3 7.6一起安装surf,同时更新了TYPO3 7.6.x依赖项,使其能够与TYPO3 7.6一起安装surf
    {
      "repositories": [
        {
          "type": "composer",
          "url": "https://composer.typo3.org/"
        }
      ],
      "name": "markussom/creativeworkspace",
      "require": {
        "typo3/cms": "8.3.1 as 7.6.10",
        "typo3/cms-beuser": "^8.3",
        "typo3/cms-fluid-styled-content": "^8.3",
        "typo3/cms-filelist": "^8.3",
        "typo3/cms-impexp": "^8.3",
        "typo3/cms-lowlevel": "^8.3",
        "typo3/cms-rsaauth": "^8.3",
        "typo3/cms-rtehtmlarea": "^8.3",
        "typo3/cms-filemetadata": "^8.3",
        "typo3/cms-setup": "^8.3",
        "typo3/cms-tstemplate": "^8.3",
        "typo3/cms-viewpage": "^8.3",
        "typo3-ter/news": "^5.0.0",
        "typo3-ter/realurl": "^2.0.14",
        "helhum/typo3-console": "^3.3.1"
      },
      "scripts": {
        "package-states": [
          "./vendor/bin/typo3cms install:generatepackagestates"
        ],
        "folder-structure": [
          "./vendor/bin/typo3cms install:fixfolderstructure"
        ],
        "post-autoload-dump": [
          "@package-states",
          "@folder-structure"
        ]
      },
      "extra": {
        "typo3/cms": {
          "cms-package-dir": "{$vendor-dir}/typo3/cms",
          "web-dir": "Web"
        },
        "helhum/typo3-console": {
          "install-binary": false
        }
      }
      "require-dev": {
        "typo3/cms-belog": "^8.3",
        "typo3/cms-info": "^8.3",
        "typo3/cms-reports": "^8.3",
        "typo3/cms-info-pagetsconfig": "^8.3",
        "TYPO3/Surf": "dev-master"
      },
      "config": {
        "optimize-autoloader": true
      }
    }