2016-08-10 1 views
0

TYPO3 CMS 7.6 설치시 TYPO3 Surf를 설치하려고했지만 설치가되지 않았습니다.TYPO3 CMS 내의 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. 

답변

2

실제로 서핑을 사용하지 않고 현재 phar 파일이 사용되므로 최신 베타 버전을 확인하십시오. 따라서 작곡가 설치가 필요없고 지금 당장 가지고있는 문제에 부딪치지 않아도됩니다.

밖으로 https://github.com/TYPO3/Surf/releases

+0

, 나는이의 Phar 파일 –

+0

을 실행할 수있는 방법이 https://getcomposer.org/doc/00-intro.md#installation-windows –

2

순간 확인은 TYPO3 CMS (8) 및 새로운 작동합니다.

TYPO3 CMS 7은 symfony/console의 구버전을 사용합니다.

{ 
     "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 
     } 
    } 
는 I Windows를 사용하고
+0

작곡가의의 Phar 파일과 동일한 운동한다 한편 TYPO3 7.6.x의 종속성은 TYPO3 7.6과 함께 서핑을 설치할 수 있도록 업데이트되었습니다 – helhum