evoweb / store-finder
Store Finder
Fund package maintenance!
garbast
www.paypal.me/garbast
Installs: 23 406
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 4
Forks: 7
Open Issues: 0
Language:JavaScript
Type:typo3-cms-extension
Requires
- php: ^8.2
- ext-pdo: *
- geocoder-php/google-maps-provider: ^4.7.0
- php-http/guzzle7-adapter: ^1.0
- phpoffice/phpspreadsheet: ^1.28.0
- sjbr/static-info-tables: dev-master
- typo3/cms-backend: ^12.0 || dev-main
- typo3/cms-core: ^12.0 || dev-main
- typo3/cms-extbase: ^12.2 || dev-main
- typo3/cms-fluid: ^12.2 || dev-main
- typo3/cms-frontend: ^12.2 || dev-main
- typo3/cms-install: ^12.2 || dev-main
Requires (Dev)
- dev-develop
- 7.0.2
- 7.0.1
- 7.0.0
- 6.x-dev
- 6.0.1
- 6.0.0
- 5.x-dev
- 5.3.2
- 5.3.1
- 5.3.0
- 5.2.0
- 5.1.6
- 5.1.5
- 5.1.4
- 5.1.3
- 5.1.2
- 5.1.1
- 5.1.0
- 5.0.1
- 5.0.0
- 4.x-dev
- 4.2.0
- 4.1.1
- 4.1.0
- 4.0.2
- 4.0.1
- 4.0.0
- 3.0.2
- 3.0.1
- 3.0.0
- 2.3.5
- 2.3.4
- 2.3.3
- 2.3.2
- 2.3.1
- 2.3.0
- 2.2.0
- 2.1.1
- 2.1.0
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.4.0
- 1.3.1
- 1.3.0
- 1.2.1
- 0.9.0
- dev-main
This package is auto-updated.
Last update: 2023-06-01 14:22:05 UTC
README
Installation
via Composer
The recommended way to install TYPO3 Console is by using Composer:
composer require evoweb/store-finder
Installation from TYPO3 Extension Repository
Download and install the extension with the extension manager module or directly from the TER.
TYPO3 10.x compatibility
As long as there is no compatible sjbr/static-info-tables by the vendor, a fork will be provided at https://github.com/garbast/static_info_tables. To make use of it add the following to your project composer.json.
"repositories": [
{
"url": "https://github.com/garbast/static_info_tables.git",
"type": "git"
}
],
Caching
The frontend middlewares are heavily cached and for every change in a location or category record the cache needs to be cleared to see changes. To counter this problem you can add a snippet to the sites TCEMAIN.tsconfig.
[traverse(page, "uid") == 70]
TCEMAIN {
clearCacheCmd = all
}
[end]
With the condition at the top, we can make sure that only a certain page or folder is affected by the automatic cache clearing. Please see TYPO3 Documentation for more information.