mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 01:56:12 +02:00

[TASK] Update composer-normalize (#356)

Also rearrange the entries in the `composer.json` according to the
updated version of `composer-normalize`.
This commit is contained in:
Oliver Klee 2021-12-26 02:48:55 +01:00 committed by GitHub
parent 074ecf6cbd
commit ef82fe29bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,8 @@
{ {
"name": "ttn/tea", "name": "ttn/tea",
"type": "typo3-cms-extension",
"description": "TYPO3 example extension for unit testing and best practices", "description": "TYPO3 example extension for unit testing and best practices",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"keywords": [ "keywords": [
"typo3", "typo3",
"example", "example",
@ -11,7 +12,6 @@
"unit testing", "unit testing",
"best practices" "best practices"
], ],
"license": "GPL-2.0-or-later",
"authors": [ "authors": [
{ {
"name": "Oliver Klee", "name": "Oliver Klee",
@ -20,6 +20,10 @@
"role": "developer" "role": "developer"
} }
], ],
"support": {
"issues": "https://github.com/TYPO3-Documentation/tea/issues",
"source": "https://github.com/TYPO3-Documentation/tea"
},
"require": { "require": {
"php": "~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0", "php": "~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0",
"typo3/cms-core": "^9.5 || ^10.4 || ^11.5.2", "typo3/cms-core": "^9.5 || ^10.4 || ^11.5.2",
@ -27,16 +31,9 @@
"typo3/cms-fluid": "^9.5 || ^10.4 || ^11.5.2", "typo3/cms-fluid": "^9.5 || ^10.4 || ^11.5.2",
"typo3/cms-frontend": "^9.5 || ^10.4 || ^11.5.2" "typo3/cms-frontend": "^9.5 || ^10.4 || ^11.5.2"
}, },
"replace": {
"typo3-ter/tea": "self.version"
},
"conflict": {
"doctrine/dbal": "2.13.1",
"typo3/class-alias-loader": "< 1.1.0"
},
"require-dev": { "require-dev": {
"codeception/codeception": "^4.1.22", "codeception/codeception": "^4.1.22",
"ergebnis/composer-normalize": "^2.15.0", "ergebnis/composer-normalize": "^2.18.0",
"friendsofphp/php-cs-fixer": "^3.2", "friendsofphp/php-cs-fixer": "^3.2",
"helmich/typo3-typoscript-lint": "^2.5.2", "helmich/typo3-typoscript-lint": "^2.5.2",
"jangregor/phpstan-prophecy": "^1.0.0", "jangregor/phpstan-prophecy": "^1.0.0",
@ -52,6 +49,24 @@
"typo3/cms-fluid-styled-content": "^9.5 || ^10.4 || ^11.5.2", "typo3/cms-fluid-styled-content": "^9.5 || ^10.4 || ^11.5.2",
"typo3/coding-standards": "^0.5.0" "typo3/coding-standards": "^0.5.0"
}, },
"replace": {
"typo3-ter/tea": "self.version"
},
"conflict": {
"doctrine/dbal": "2.13.1",
"typo3/class-alias-loader": "< 1.1.0"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"TTN\\Tea\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"TTN\\Tea\\Tests\\": "Tests/"
}
},
"config": { "config": {
"preferred-install": { "preferred-install": {
"*": "dist" "*": "dist"
@ -69,17 +84,6 @@
"web-dir": ".Build/public" "web-dir": ".Build/public"
} }
}, },
"autoload": {
"psr-4": {
"TTN\\Tea\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"TTN\\Tea\\Tests\\": "Tests/"
}
},
"prefer-stable": true,
"scripts": { "scripts": {
"post-autoload-dump": [ "post-autoload-dump": [
"@link-extension" "@link-extension"
@ -192,9 +196,5 @@
"fix:php:cs": "Fixes the code style with PHP-CS-Fixer.", "fix:php:cs": "Fixes the code style with PHP-CS-Fixer.",
"fix:php:sniff": "Fixes the code style with PHP_CodeSniffer.", "fix:php:sniff": "Fixes the code style with PHP_CodeSniffer.",
"phpstan:baseline": "Updates the PHPStan baseline file to match the code." "phpstan:baseline": "Updates the PHPStan baseline file to match the code."
},
"support": {
"issues": "https://github.com/TYPO3-Documentation/tea/issues",
"source": "https://github.com/TYPO3-Documentation/tea"
} }
} }