wexample / symfony-loader
A dynamic rendering system for Symfony
0.0.20
2026-04-03 13:16 UTC
Requires
- php: >=8.2
- fortawesome/font-awesome: ^6.7
- friendsofsymfony/jsrouting-bundle: ^3.2.1
- symfony/webpack-encore-bundle: ^2.0.1
- wexample/php-html: *
- wexample/symfony-dev: 1.0.80
- wexample/symfony-helpers: *
- wexample/symfony-routing: 0.0.21
- wexample/symfony-translations: 1.0.80
Requires (Dev)
- dev-main
- 0.0.20
- 0.0.19
- 0.0.18
- 0.0.16
- 0.0.15
- 0.0.14
- 0.0.13
- 0.0.12
- 0.0.11
- 0.0.10
- 0.0.9
- 0.0.8
- 0.0.7
- 0.0.6
- 0.0.5
- 0.0.4
- 0.0.3
- dev-version-0.0.20
- dev-version-0.0.19
- dev-version-0.0.18
- dev-version-0.0.16
- dev-version-0.0.17
- dev-version-0.0.15
- dev-version-0.0.14
- dev-version-0.0.13
- dev-version-0.0.12
- dev-version-0.0.11
- dev-version-0.0.10
- dev-version-0.0.8
- dev-version-0.0.9
- dev-version-0.0.7
- dev-version-0.0.6
- dev-version-0.0.5
- dev-version-0.0.3
- dev-version-0.0.4
This package is auto-updated.
Last update: 2026-04-03 13:17:05 UTC
README
Version: 0.0.20
A dynamic rendering system for Symfony
Table of Contents
Installation
JS helpers resolution
The webpack helper (src/Resources/js/webpack/encore.manifest.js) expects @wexample/js-helpers to be installed in the app.
For local dev containers, use link: in package.json:
{
"devDependencies": {
"@wexample/js-helpers": "link:/var/www/javascript-dev/wexample/js-helpers"
}
}
Local JS packages (dev only)
To use local JS packages in development, configure them in config/packages/wexample_symfony_dev.yaml:
wexample_symfony_dev: js_dev_packages: - '/var/www/javascript-dev/wexample/*'
The glob * scans all subdirectories containing a package.json and automatically:
- Adds webpack aliases via
Encore.addAliases() - Adds TypeScript paths in
tsconfig.json
Run
yarn install yarn watch
The manifest and tsconfig are updated automatically.