Для typo3 / cms-tstemplate 10.0.x-dev требуется typo3 / cms-core 10.0.*@dev ->, выполняемого typo3 / cms-core [10.0.x-dev] - PullRequest
1 голос
/ 22 апреля 2019

Здравствуйте, я пытаюсь установить последнюю версию Typo3. Я новичок в typo3 и просто вхожу в него.

Я выбрал композитор, так как это самый простой способ установки.

На сайте написано, что мне нужно использовать

require typo3/minimal

Но когда я пытаюсь добавить любые другие расширения, такие как

typo3/cms-tstemplate

Я получаю эту ошибку.

Using version ^10.0@dev for typo3/cms-tstemplate
Search for a package:
./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
    - don't install typo3/cms-core 10.0.x-dev|don't install typo3/cms-core 9.5.x-dev
    - don't install typo3/cms-core 10.0.x-dev|remove typo3/cms-core 9.5.x-dev
    - don't install typo3/cms-core 10.0.x-dev|don't install typo3/cms-core 9.5.x-dev
    - typo3/cms-tstemplate 10.0.x-dev requires typo3/cms-core 10.0.*@dev -> satisfiable by typo3/cms-core[10.0.x-dev].
    - Installation request for typo3/cms-tstemplate ^10.0@dev -> satisfiable by typo3/cms-tstemplate[10.0.x-dev].
    - Installation request for typo3/cms-core (locked at 9.5.x-dev) -> satisfiable by typo3/cms-core[9.5.x-dev].

Так, какую версию мне нужно настроить сейчас, читать немного запутанно.

EDIT:

composer.json

{
    "name": "test",
    "description": "test",
    "type": "project",
    "require": {
        "typo3/minimal": "9.5"
    },
    "authors": [
        {
            "name": "John",
            "email": "test"
        }
    ],
    "minimum-stability": "dev"
}

Cmd линия:

C:\xampp\htdocs\test> composer require typo3/minimal:^9.5
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 0 installs, 1 update, 0 removals
Writing lock file
Generating autoload files
Generating class alias map file
Inserting class alias loader into main autoload.php file
C:\xampp\htdocs\test> composer require typo3/cms-tstemplate:^9.5
./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
    - don't install typo3/cms-core v9.5.0|don't install typo3/cms-core 9.5.x-dev
    - don't install typo3/cms-core v9.5.0|remove typo3/cms-core 9.5.x-dev
    - don't install typo3/cms-core v9.5.0|don't install typo3/cms-core 9.5.x-dev
    - typo3/cms-tstemplate v9.5.0 requires typo3/cms-core 9.5.0 -> satisfiable by typo3/cms-core[v9.5.0].
    - Installation request for typo3/cms-tstemplate 9.5 -> satisfiable by typo3/cms-tstemplate[v9.5.0].
    - Installation request for typo3/cms-core (locked at 9.5.x-dev) -> satisfiable by typo3/cms-core[9.5.x-dev].

1 Ответ

1 голос
/ 23 апреля 2019

Последняя стабильная LTS-версия TYPO3 - 9.5. Версия 10.0 еще не выпущена, поэтому вы получите только версию для разработчиков.

Так что я бы предложил начать с

composer require typo3/minimal:"^9.5"

Для всех других системных расширений TYPO3 вы можете сделать это так же:

composer require typo3/cms-tstemplate:"^9.5"
...