Skip to content
This repository has been archived by the owner on Dec 9, 2023. It is now read-only.

[BUGFIX] Always use Composer-installed versions of the dev tools #181

Merged
merged 1 commit into from
Apr 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ included PHPUnit package.
- Drop support for TYPO3 8.7 (#174)

### Fixed
- Always use Composer-installed versions of the dev tools (#181)
- Add `var/` to the `.gitignore` (#180)
- Fix some incomplete PHPDoc (#176)
- Fix warnings in the `travis.yml` (#172)
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@
},
"scripts": {
"ci:php:lint": "find *.php Classes Configuration Migrations Tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:php:sniff": "phpcs Classes Configuration Tests",
"ci:php:fixer": "php-cs-fixer fix --dry-run -v --show-progress=dots --diff-format=udiff",
"ci:php:sniff": ".Build/vendor/bin/phpcs Classes Configuration Tests",
"ci:php:fixer": ".Build/vendor/bin/php-cs-fixer fix --dry-run -v --show-progress=dots --diff-format=udiff",
"ci:tests:unit": ".Build/vendor/bin/typo3 phpunit:run --options=\"Tests/Unit\"",
"ci:tests": [
"@ci:tests:unit"
Expand All @@ -75,7 +75,7 @@
"@ci:static",
"@ci:dynamic"
],
"php:fix": "php-cs-fixer fix && phpcbf Classes Configuration Tests",
"php:fix": ".Build/vendor/bin/php-cs-fixer fix && .Build/vendor/bin/phpcbf Classes Configuration Tests",
"link-extension": [
"@php -r 'is_dir($extFolder=__DIR__.\"/.Build/public/typo3conf/ext/\") || mkdir($extFolder, 0777, true);'",
"@php -r 'file_exists($extFolder=__DIR__.\"/.Build/public/typo3conf/ext/phpunit\") || symlink(__DIR__,$extFolder);'"
Expand Down