Здравствуйте, я пытаюсь установить последнюю версию 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].