imatic / view-bundle
Bundle with predefined UI components
Installs: 6 758
Dependents: 1
Suggesters: 0
Security: 0
Stars: 3
Watchers: 8
Forks: 0
Open Issues: 1
Requires
- php: ^7.2 || ^8.0
- ext-iconv: *
- ext-json: *
- knplabs/knp-menu-bundle: ^2.3|^3.0
- symfony/asset: ^4.4 || ^5.0 || ^6.2
- symfony/expression-language: ^4.4 || ^5.0 || ^6.2
- symfony/framework-bundle: ^4.4 || ^5.0 || ^6.2
- symfony/security-bundle: ^4.4 || ^5.0 || ^6.2
- twig/twig: ^2.12|^3.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.16
- imatic/form-bundle: ^5.0
- imatic/testing: ^6.0
- symfony/browser-kit: ^4.4 || ^5.0 || ^6.2
- symfony/phpunit-bridge: ^4.4 || ^5.0 || ^6.2
- symfony/web-profiler-bundle: ^4.4 || ^5.0 || ^6.2
- symfony/yaml: ^4.4 || ^5.0 || ^6.2
- dev-master
- v5.1.4
- v5.1.3
- v5.1.2
- v5.1.1
- v5.1.0
- v5.0.15
- v5.0.14
- v5.0.13
- v5.0.12
- v5.0.11
- v5.0.10
- v5.0.9
- v5.0.8
- v5.0.7
- v5.0.6
- v5.0.5
- v5.0.4
- v5.0.3
- v5.0.2
- v5.0.1
- v5.0.0
- v4.0.1
- v4.0
- v3.1.7
- v3.1.6
- v3.1.5
- v3.1.4
- v3.1.3
- v3.1.2
- v3.1.1
- v3.1.0
- v3.0.17
- v3.0.16
- v3.0.15
- v3.0.14
- v3.0.13
- v3.0.12
- v3.0.11
- 3.0.10
- 3.0.9
- 3.0.8
- 3.0.7
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0
- 2.6.5
- 2.6.4
- 2.6.3
- 2.6.2
- 2.6.1
- 2.6.0
- 2.4.1
- 2.4.0
- 2.3.x-dev
- 2.2.x-dev
- dev-VSEMAUTH-65
- dev-dependabot/npm_and_yarn/bootstrap-5.0.0
- dev-VSEMFIN-116
- dev-VSEMFORM-275
- dev-symfony54
- dev-translations
- dev-php8
- dev-RESEARCH-220
- dev-update_assets
- dev-update
- dev-parklane
This package is auto-updated.
Last update: 2025-03-05 01:16:45 UTC
README
ImaticViewBundle
See Resources/doc/index.rst for documentation.
Build Process
In case any asset sources are changed run yarn build
command which will compile them.
Any compiled assets are commited with project. Build process is provided by standard webpack configuration.
More details can be found in webpack.config.js
.
Extending ExpressionLanguage
Bundle ExpressionLanguage can be extended easily extended. To do so, you can create a new expression provider tagged
with imatic_view.expression_language_provider
.
use Symfony\Component\ExpressionLanguage\ExpressionFunction; use Symfony\Component\ExpressionLanguage\ExpressionFunctionProviderInterface; <?php class ExpressionLanguageProvider implements ExpressionFunctionProviderInterface { public function getFunctions() { return [ new ExpressionFunction( 'myFunction', function () { // ... }, function () { // ... } ), ]; } }
services: ExpressionLanguageProvider: tags: - { name: imatic_view.expression_language_provider }