prestashop / translationtools-bundle
Translation tools for PrestaShop
Installs: 4 336 811
Dependents: 3
Suggesters: 0
Security: 0
Stars: 4
Watchers: 25
Forks: 16
Open Issues: 6
Type:bundle
Requires
- php: >=8.1
- nikic/php-parser: ^4
- smarty/smarty: ^3.1 || ^4.0
- symfony/twig-bridge: ^3.4 || ^4.4 || ^5.0 || ^6.0
- twig/twig: ^1.38 || ^2.7 || ^3.0
Requires (Dev)
- doctrine/common: ^3
- friendsofphp/php-cs-fixer: ^3.2
- phpunit/phpunit: ~9.5.10
- symfony/framework-bundle: ^3.4 || ^4.4 || ^5.0 || ^6.0
- symfony/symfony: ^6.0
- symfony/translation: ^3.4 || ^4.4 || ^5.0 || ^6.0
README
Embed Translation dumpers and extractors for PrestaShop eCommerce CMS. Can be also useful if you need to parse Smarty files.
Installation
As usual, there is few steps required to install this bundle:
1 Add this bundle to your project as a composer dependency:
// composer.json { // ... require: { // ... "prestashop/translationtools-bundle": "dev-master" } }
2 Add this bundle to your application kernel:
// app/AppKernel.php public function registerBundles() { $bundles = array( // ... new PrestaShop\TranslationToolsBundle\TranslationToolsBundle(), ); return $bundles; }
3 How to contribute
This bundle is unit-tested and well covered. You can execute the tests with this command:
$ ./vendor/bin/phpunit