mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:36:13 +01:00
[BUGFIX] Do not check composer.lock
during composer normalize
(#641)
This package does not ship a `composer.lock`, and hence `composer normalize` should not check that file. Fixes #640
This commit is contained in:
parent
5a5d900c27
commit
49c38d6e40
2 changed files with 2 additions and 1 deletions
|
@ -26,6 +26,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
|
|||
- Drop support for PHP 7.2 and 7.3 (#581)
|
||||
|
||||
### Fixed
|
||||
- Do not check `composer.lock` during `composer normalize` (#641)
|
||||
- Require TYPO3 >= 11.5.4 (#643)
|
||||
- Stop relying on transitive dependencies for `psr/http-message` (#613)
|
||||
|
||||
|
|
|
@ -105,7 +105,7 @@
|
|||
"ci": [
|
||||
"@ci:static"
|
||||
],
|
||||
"ci:composer:normalize": "@composer normalize --dry-run",
|
||||
"ci:composer:normalize": "@composer normalize --no-check-lock --dry-run",
|
||||
"ci:coverage": [
|
||||
"@ci:coverage:unit",
|
||||
"@ci:coverage:functional"
|
||||
|
|
Loading…
Reference in a new issue