runroom / translation-bundle
Manage translations on the Sonata Admin interface
Installs: 1 762
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 3
Open Issues: 1
Type:symfony-bundle
Requires
- php: ^7.3
- a2lix/translation-form-bundle: ^2.4
- doctrine/doctrine-bundle: ^2.0
- doctrine/persistence: ^1.3
- friendsofsymfony/ckeditor-bundle: ^1.2 || ^2.2
- knplabs/doctrine-behaviors: ^2.0
- sonata-project/admin-bundle: ^3.61
- symfony/config: ^4.4 || ^5.0
- symfony/dependency-injection: ^4.4 || ^5.0
- symfony/http-kernel: ^4.4 || ^5.0
- symfony/translation: ^4.4 || ^5.0
- symfony/twig-bundle: ^4.4 || ^5.0
- symfony/validator: ^4.4 || ^5.0
- symfony/yaml: ^4.4 || ^5.0
- twig/twig: ^2.12 || ^3.0
Requires (Dev)
- ergebnis/composer-normalize: ^2.2
- friendsofphp/php-cs-fixer: ^2.16
- jangregor/phpstan-prophecy: ^0.6
- matthiasnoback/symfony-dependency-injection-test: ^4.1
- phpstan/phpstan: ^0.12
- phpstan/phpstan-doctrine: ^0.12
- phpstan/phpstan-phpunit: ^0.12
- phpstan/phpstan-symfony: ^0.12
- phpunit/phpunit: ^8.5
- symfony/phpunit-bridge: ^5.0
This package is auto-updated.
Last update: 2020-03-16 16:43:40 UTC
README
Installation
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
composer require runroom/translation-bundle
Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles in config/bundles.php
file of your project:
// config/bundles.php return [ // ... Runroom\TranslationBundle\TranslationBundle::class => ['all' => true], ];
Update doctrine schema
Finally, execute doctrine schema update to create the new tables:
console doctrine:schema:update --force
License
This bundle is under the MIT license.