t3md/ke_search_premium

Additional functions for ke_search, the search extension for TYPO3.

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 0

Forks: 0

Open Issues: 0

Type:typo3-cms-extension

12.0.0 2024-10-29 11:28 UTC

This package is auto-updated.

Last update: 2024-10-29 11:31:46 UTC


README

Contributing

Code contributions are welcome.

The recommended way is to fork the project on GitHub and create a pull request.

Please explain what your patch is intended to do either by creating an issue first or by adding an explanation to the pull request.

You can check out the project locally with

git clone git@github.com:tpwd/ke_search_premium.git

(adapt the repository URL to your cloned repository)

Then install the dependencies and run the coding-standards command to copy the files .editorconfig and .php-cs-fixer.dist.php to the root directoy of the package.

cd ke_search_premium
composer install
composer exec typo3-coding-standards extension

Testing

Manual testing

To test manually if your code is working, set up a TYPO3 instance for testing and symlink or deploy the directory ke_search_premium to your TYPO3 test instance to typo3conf/ext/ke_search_premium. If you deploy the code (e.g. by using PHPStorm "Deployment" feature), you can ignore the .Build directory.

There are also some helpers available to test your automatically, see below.

PHPStan

To check the code with PHPStan

composer test:phpstan

This will create a file phpstan-report.log which contains the errors.

PHP Code Style Fixer

To check the code with php-cs-fixer

composer test:php-cs-fixer

This will create a file php-cs-fixer-report.log which contains the errors.

To fix the code styling according to the TYPO3 coding guidelines automatically run

.Build/bin/php-cs-fixer fix