Scans code for usage of deprecated and or changed code.
TYPO3 publishes breaking changes and deprecations since version 7.
This tool scans a folder for any code that is broken or deprecated. It's a wrapper around the TYPO3 scanner library that has been extracted from the TYPO3 v9 core. You can scan for deprecations and breaking changes for v7, v8 and v9.
Then please consider a sponsorship so I can make this tool even more awesome!
Thank you! ♥
The scanner requires PHP 7.0 or higher to run. Why? Because this tool was written in 2018! Still running that old site on PHP 5.6? Move your extensions over to a system with PHP 7.0+ to scan them.
If there is enough demand I can downgrade components of the scanner so it can also run on PHP 5.6. This would also mean that the TYPO3 scanner library will need to be adjusted. It is taken from the TYPO3 9 core which requires PHP 7.2 at the time of writing. This sounds like quite a hassle to me, so if you want to run the LTS version of TYPO3 . . . ugrading your PHP version is the preferred practice.
Download the latest version from: https://github.com/Tuurlijk/typo3scan/releases
Or install using composer (skip the init step if you're installing it into an existing project):
composer init
composer config minimum-stability dev
composer config repositories.tuurlijk-scanner vcs https://github.com/Tuurlijk/scanner
composer require --update-no-dev "michielroos/typo3scan:*"
Specify a path to scan.
php ./typo3scan.phar scan ~/tmp/source
By default the scanner scans for breaking changes and deprecations in the most recent version of TYPO3. At the time of writing, this is version 9.
- long option:
--target
- short option:
-t
- values:
7
,8
and9
- default:
9
php ./typo3scan.phar scan --target 8 ~/tmp/source
You can filter out specific change types (breaking, deprecation, feature, important)
- long option:
--only
- short option:
-o
- values:
breaking
,deprecation
,feature
,important
- default:
breaking,deprecation,feature,important
php ./typo3scan.phar scan --only breaking ~/tmp/source
php ./typo3scan.phar scan --only breaking,deprecation ~/tmp/source
You can specify a different output format.
- long option:
--format
- short option:
-f
- values:
html
,junit
,markdown
,plain
- default:
plain
php ./typo3scan.phar scan --format markdown ~/tmp/source
Instead of piping the output to a file, typo3scanner can write directly to a report file
- long option:
--reportFile
- short option:
-r
php ./typo3scan.phar scan -r ~/tmp/report.txt ~/tmp/source
You can output in ANY format of your choosing by specifying a custom templatePath.
- long option:
--templatePath
The scanner looks for a file with the name Format.twig
. So if you create a HTML template and store that in ~/path/to/templates/Html.twig
, then you can generate a HTML report with the following command:
php ./typo3scan.phar scan --format html --templatePath ~/path/to/templates ~/tmp/source
If you want to output the report as Restructured Text, you would create a Rst.twig
template and generate rest using:
php ./typo3scan.phar scan --format rst --templatePath ~/path/to/templates ~/tmp/source
You can redirect the output to a file
php ./typo3scan.phar scan --format markdown ~/tmp/source > source.md
If you have a list of extension keys you want to scan, you can do something like:
for e in `cat ~/extensions.txt`;
do
php ./typo3scan.phar scan --format markdown ~/tmp/ext/$e > ~/tmp/reports/$e.md;
done
Check multiple extensions in the folder web/typo3conf/ext/
adjust that path if needed.
The result is an artifact which contains a Build/Report/Deprecations
where you have a file per extension and TYPO3 Version 7, 8 and 9.
This way you can easily review each extension.
With the planned junit ouput this can be nicely integrated into the gitlab merge request widget as well.
checkDeprecations:
image: docker.kay-strobach.de/docker/php:7.1
stage: test
variables:
SCANNER_RELEASE: "https://github.com/Tuurlijk/typo3scan/releases/download/1.3.0/typo3scan.phar"
script:
- curl -L $SCANNER_RELEASE --output typo3scan.phar
- php ./typo3scan.phar
- mkdir -p Build/Report/Deprecations
- for d in web/typo3conf/ext/*/ ; do (php ./typo3scan.phar scan --target 7 --format markdown $d > Build/Report/Deprecations/v7-$(basename $d).md); done
- for d in web/typo3conf/ext/*/ ; do (php ./typo3scan.phar scan --target 8 --format markdown $d > Build/Report/Deprecations/v8-$(basename $d).md); done
- for d in web/typo3conf/ext/*/ ; do (php ./typo3scan.phar scan --target 9 --format markdown $d > Build/Report/Deprecations/v9-$(basename $d).md); done
artifacts:
when: on_success
expire_in: 7 days
paths:
- Build
You can find example templates in the Resources/Private/Templates folder.
A part of the plain output for:
typo3scan.phar scan ~/tmp/source/powermail
Looks like this:
powermail
Found 26 matches in 1.09s when checking for changes and deprecations in TYPO3 7
strong weak DEPRECATION BREAKING
29.41% 70.59% 5.88% 94.12%
Classes/Finisher/SendParametersFinisher.php
Call to method "isEnabled()" (weak)
60 if ($this->isEnabled()) {
Deprecation: #37171 - Deprecate t3editor->isEnabled()
https://docs.typo3.org/typo3cms/extensions/core/Changelog/7.3/Deprecation-67171-T3editorIsEnabled.html
Configuration/TCA/tx_powermail_domain_model_answer.php
Usage of array key "dividers2tabs" (strong)
14 'dividers2tabs' => true,
Breaking: #62833 - Removed dividers2tabs functionality
https://docs.typo3.org/typo3cms/extensions/core/Changelog/7.0/Breaking-62833-Dividers2Tabs.html
Usage of array key "canNotCollapse" (weak)
240 'canNotCollapse' => 1
Breaking: #67753 - Drop "Show secondary options"
https://docs.typo3.org/typo3cms/extensions/core/Changelog/7.4/Breaking-67753-DropSecondaryOptions.html
Usage of array key "_PADDING" (weak)
206 '_PADDING' => 2,
Breaking: #63846 - FormEngine refactoring
https://docs.typo3.org/typo3cms/extensions/core/Changelog/7.3/Breaking-63846-FormEngineRefactoring.html
ext_localconf.php
Access to array key "formevals" (weak)
71 $TYPO3_CONF_VARS['SC_OPTIONS']['tce']['formevals']['\In2code\Powermail\Tca\EvaluateEmail'] =
Breaking: #67749 - Force class auto loading for various hooks
https://docs.typo3.org/typo3cms/extensions/core/Changelog/7.4/Breaking-67749-ForceAutoloadingForVariousHooks.html
A part of the html output for:
typo3scan.phar scan ~/tmp/source/coreapi -f html -t 7
Looks like this:
A part of the junit output for:
typo3scan.phar scan ~/tmp/source/coreapi -f junit -t 7
Looks like this:
If you want to help improve this tool to reduce the amount of false positives, improve matchers, add new matchers etc., your contributions are very welcome!
This tool is a wrapper around the TYPO3 scanner library that has been extracted from the TYPO3 v9 core. I added the v7 and v8 matcher rules to a fork of this repository.
Most of the time you will want to change the typo3 scanner library or your fork of it and then run that library inside the typo3scan tool.
Clone the TYPO3 scanner library repository (or your fork of the scanner repository):
git clone https://github.com/Tuurlijk/scanner.git
Clone this repository:
git clone https://github.com/Tuurlijk/typo3scan.git
Add a repository entry to your composer.json
pointing to your locally cloned scanner library repository. Put this one as the first one in the list.
{
"type": "path",
"url": "~/Projects/TYPO3/scanner/"
},
Run composer update
. Composer will now link the local scanner library into the typo3scan project. So any changes to the scanner library will be directly reflected when executing typo3scan.
You can execute the typo3scan tool from the bin
directory.
cd ~/path/to/typo3scan
./bin/typo3scan scan ~/tmp/testExtension
cd ~/path/to/scanner-library
composer install
./.Build/bin/phpunit tests/
This project was generously sponsored by Stichting Praktijkleren.