exception |
LogicException {#575
#message: "The autoimport "tom-select/dist/css/tom-select.default.css" could not be found in importmap.php. Try running "php bin/console importmap:require tom-select/dist/css/tom-select.default.css"."
#code: 0
#file: "/home/vincentgq/www/vendor/symfony/stimulus-bundle/src/AssetMapper/AutoImportLocator.php"
#line: 67
trace: {
/home/vincentgq/www/vendor/symfony/stimulus-bundle/src/AssetMapper/AutoImportLocator.php:67 {
Symfony\UX\StimulusBundle\AssetMapper\AutoImportLocator->locateAutoImport(string $path, UxPackageMetadata $packageMetadata): MappedControllerAutoImport …
› if (!$entry) {
› throw new \LogicException(\sprintf('The autoimport "%s" could not be found in importmap.php. Try running "php bin/console importmap:require %s".', $path, $path));
› }
}
/home/vincentgq/www/vendor/symfony/stimulus-bundle/src/AssetMapper/ControllersMapGenerator.php:166 {
Symfony\UX\StimulusBundle\AssetMapper\ControllersMapGenerator->collectAutoImports(array $autoImports, UxPackageMetadata $currentPackageMetadata): array …
›
› $autoImportItems[] = $this->autoImportLocator->locateAutoImport($path, $currentPackageMetadata);
› }
arguments: {
$path: "tom-select/dist/css/tom-select.default.css"
$packageMetadata: Symfony\UX\StimulusBundle\Ux\UxPackageMetadata {#562 …}
}
}
/home/vincentgq/www/vendor/symfony/stimulus-bundle/src/AssetMapper/ControllersMapGenerator.php:138 {
Symfony\UX\StimulusBundle\AssetMapper\ControllersMapGenerator->loadUxControllers(): array …
›
› $autoImports = $this->collectAutoImports($localControllerConfig['autoimport'] ?? [], $packageMetadata);
›
arguments: {
$autoImports: [ …3]
$currentPackageMetadata: Symfony\UX\StimulusBundle\Ux\UxPackageMetadata {#562 …}
}
}
/home/vincentgq/www/vendor/symfony/stimulus-bundle/src/AssetMapper/ControllersMapGenerator.php:46 {
Symfony\UX\StimulusBundle\AssetMapper\ControllersMapGenerator->getControllersMap(): array …
› return array_merge(
› $this->loadUxControllers(),
› $this->loadCustomControllers(),
}
/home/vincentgq/www/vendor/symfony/stimulus-bundle/src/AssetMapper/StimulusLoaderJavaScriptCompiler.php:52 {
Symfony\UX\StimulusBundle\AssetMapper\StimulusLoaderJavaScriptCompiler->compile(string $content, MappedAsset $asset, AssetMapperInterface $assetMapper): string …
›
› foreach ($this->controllersMapGenerator->getControllersMap() as $name => $mappedControllerAsset) {
› // @legacy: backwards compatibility with Symfony 6.3
}
/home/vincentgq/www/vendor/symfony/asset-mapper/AssetMapperCompiler.php:40 {
Symfony\Component\AssetMapper\AssetMapperCompiler->compile(string $content, MappedAsset $asset): string …
›
› $content = $compiler->compile($content, $asset, $this->assetMapper ??= ($this->assetMapperFactory)());
› }
arguments: {
$content: """
import { Application } from '@hotwired/stimulus';\n
import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
\n
const controllerAttribute = 'data-controller';\n
const loadControllers = (application, eagerControllers, lazyControllers) => {\n
for (const name in eagerControllers) {\n
registerController(name, eagerControllers[name], application);\n
}\n
const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
lazyControllerHandler.start();\n
};\n
const startStimulusApp = () => {\n
const application = Application.start();\n
application.debug = isApplicationDebug;\n
loadControllers(application, eagerControllers, lazyControllers);\n
return application;\n
};\n
class StimulusLazyControllerHandler {\n
constructor(application, lazyControllers) {\n
this.application = application;\n
this.lazyControllers = lazyControllers;\n
}\n
start() {\n
this.lazyLoadExistingControllers(document.documentElement);\n
this.lazyLoadNewControllers(document.documentElement);\n
}\n
lazyLoadExistingControllers(element) {\n
Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
.flatMap(extractControllerNamesFrom)\n
.forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
loadLazyController(name) {\n
if (!this.lazyControllers[name]) {\n
return;\n
}\n
const controllerLoader = this.lazyControllers[name];\n
delete this.lazyControllers[name];\n
if (!canRegisterController(name, this.application)) {\n
return;\n
}\n
this.application.logDebugActivity(name, 'lazy:loading');\n
controllerLoader()\n
.then((controllerModule) => {\n
this.application.logDebugActivity(name, 'lazy:loaded');\n
registerController(name, controllerModule.default, this.application);\n
})\n
.catch((error) => {\n
console.error(`Error loading controller "${name}":`, error);\n
});\n
}\n
lazyLoadNewControllers(element) {\n
if (Object.keys(this.lazyControllers).length === 0) {\n
return;\n
}\n
new MutationObserver((mutationsList) => {\n
for (const mutation of mutationsList) {\n
switch (mutation.type) {\n
case 'childList': {\n
for (const node of mutation.addedNodes) {\n
if (node instanceof Element) {\n
extractControllerNamesFrom(node).forEach((controllerName) => {\n
this.loadLazyController(controllerName);\n
});\n
}\n
}\n
break;\n
}\n
case 'attributes': {\n
if (mutation.attributeName === controllerAttribute) {\n
extractControllerNamesFrom(mutation.target).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
}\n
}\n
}\n
}).observe(element, {\n
attributeFilter: [controllerAttribute],\n
subtree: true,\n
childList: true,\n
});\n
}\n
}\n
function registerController(name, controller, application) {\n
if (canRegisterController(name, application)) {\n
application.register(name, controller);\n
}\n
}\n
function extractControllerNamesFrom(element) {\n
const controllerNameValue = element.getAttribute(controllerAttribute);\n
if (!controllerNameValue) {\n
return [];\n
}\n
return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
}\n
function canRegisterController(name, application) {\n
return !application.router.modulesByIdentifier.has(name);\n
}\n
\n
export { loadControllers, startStimulusApp };\n
"""
$asset: Symfony\Component\AssetMapper\MappedAsset {#520 …}
$assetMapper: Symfony\Component\AssetMapper\AssetMapper {#286 …}
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:107 {
Symfony\Component\AssetMapper\Factory\MappedAssetFactory->compileContent(MappedAsset $asset): ?string …
› $content = (new Filesystem())->readFile($asset->sourcePath);
› $compiled = $this->compiler->compile($content, $asset);
›
arguments: {
$content: """
import { Application } from '@hotwired/stimulus';\n
import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
\n
const controllerAttribute = 'data-controller';\n
const loadControllers = (application, eagerControllers, lazyControllers) => {\n
for (const name in eagerControllers) {\n
registerController(name, eagerControllers[name], application);\n
}\n
const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
lazyControllerHandler.start();\n
};\n
const startStimulusApp = () => {\n
const application = Application.start();\n
application.debug = isApplicationDebug;\n
loadControllers(application, eagerControllers, lazyControllers);\n
return application;\n
};\n
class StimulusLazyControllerHandler {\n
constructor(application, lazyControllers) {\n
this.application = application;\n
this.lazyControllers = lazyControllers;\n
}\n
start() {\n
this.lazyLoadExistingControllers(document.documentElement);\n
this.lazyLoadNewControllers(document.documentElement);\n
}\n
lazyLoadExistingControllers(element) {\n
Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
.flatMap(extractControllerNamesFrom)\n
.forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
loadLazyController(name) {\n
if (!this.lazyControllers[name]) {\n
return;\n
}\n
const controllerLoader = this.lazyControllers[name];\n
delete this.lazyControllers[name];\n
if (!canRegisterController(name, this.application)) {\n
return;\n
}\n
this.application.logDebugActivity(name, 'lazy:loading');\n
controllerLoader()\n
.then((controllerModule) => {\n
this.application.logDebugActivity(name, 'lazy:loaded');\n
registerController(name, controllerModule.default, this.application);\n
})\n
.catch((error) => {\n
console.error(`Error loading controller "${name}":`, error);\n
});\n
}\n
lazyLoadNewControllers(element) {\n
if (Object.keys(this.lazyControllers).length === 0) {\n
return;\n
}\n
new MutationObserver((mutationsList) => {\n
for (const mutation of mutationsList) {\n
switch (mutation.type) {\n
case 'childList': {\n
for (const node of mutation.addedNodes) {\n
if (node instanceof Element) {\n
extractControllerNamesFrom(node).forEach((controllerName) => {\n
this.loadLazyController(controllerName);\n
});\n
}\n
}\n
break;\n
}\n
case 'attributes': {\n
if (mutation.attributeName === controllerAttribute) {\n
extractControllerNamesFrom(mutation.target).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
}\n
}\n
}\n
}).observe(element, {\n
attributeFilter: [controllerAttribute],\n
subtree: true,\n
childList: true,\n
});\n
}\n
}\n
function registerController(name, controller, application) {\n
if (canRegisterController(name, application)) {\n
application.register(name, controller);\n
}\n
}\n
function extractControllerNamesFrom(element) {\n
const controllerNameValue = element.getAttribute(controllerAttribute);\n
if (!controllerNameValue) {\n
return [];\n
}\n
return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
}\n
function canRegisterController(name, application) {\n
return !application.router.modulesByIdentifier.has(name);\n
}\n
\n
export { loadControllers, startStimulusApp };\n
"""
$asset: Symfony\Component\AssetMapper\MappedAsset {#520 …}
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:51 {
Symfony\Component\AssetMapper\Factory\MappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
›
› $content = $this->compileContent($asset);
› [$digest, $isPredigested] = $this->getDigest($asset, $content);
arguments: {
$asset: Symfony\Component\AssetMapper\MappedAsset {#520 …}
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/Factory/CachedMappedAssetFactory.php:43 {
Symfony\Component\AssetMapper\Factory\CachedMappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
›
› $mappedAsset = $this->innerFactory->createMappedAsset($logicalPath, $sourcePath);
›
arguments: {
$logicalPath: "@symfony/stimulus-bundle/loader.js"
$sourcePath: "/home/vincentgq/www/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/AssetMapper.php:41 {
Symfony\Component\AssetMapper\AssetMapper->getAsset(string $logicalPath): MappedAsset …
›
› return $this->mappedAssetFactory->createMappedAsset($logicalPath, $filePath);
› }
arguments: {
$logicalPath: "@symfony/stimulus-bundle/loader.js"
$sourcePath: "/home/vincentgq/www/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/AssetMapper.php:62 {
Symfony\Component\AssetMapper\AssetMapper->getAssetFromSourcePath(string $sourcePath): MappedAsset …
›
› return $this->getAsset($logicalPath);
› }
arguments: {
$logicalPath: "@symfony/stimulus-bundle/controllers.js"
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/Compiler/JavaScriptImportPathCompiler.php:209 {
Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->findAssetForRelativeImport(string $importedModule, MappedAsset $asset, AssetMapperInterface $assetMapper): MappedAsset …
› try {
› $dependentAsset = $assetMapper->getAssetFromSourcePath($resolvedSourcePath);
› } catch (CircularAssetsException $exception) {
arguments: {
$sourcePath: "/home/vincentgq/www/vendor/symfony/stimulus-bundle/assets/dist/controllers.js"
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/Compiler/JavaScriptImportPathCompiler.php:88 {
Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->Symfony\Component\AssetMapper\Compiler\{closure} …
› } else {
› $dependentAsset = $this->findAssetForRelativeImport($importedModule, $asset, $assetMapper);
› }
arguments: {
$importedModule: "./controllers.js"
$asset: Symfony\Component\AssetMapper\MappedAsset {#520 …}
$assetMapper: Symfony\Component\AssetMapper\AssetMapper {#286 …}
}
}
Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->Symfony\Component\AssetMapper\Compiler\{closure}() {}
/home/vincentgq/www/vendor/symfony/asset-mapper/Compiler/JavaScriptImportPathCompiler.php:64 {
Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->compile(string $content, MappedAsset $asset, AssetMapperInterface $assetMapper): string …
› {
› return preg_replace_callback(self::IMPORT_PATTERN, function ($matches) use ($asset, $assetMapper, $content) {
› $fullImportString = $matches[0][0];
arguments: {
$pattern: """
/\n
^(?:\/\/.*) # Lines that start with comments\n
|\n
(?:\n
'(?:[^'\\\n]|\\.)*+' # Strings enclosed in single quotes\n
|\n
"(?:[^"\\\n]|\\.)*+" # Strings enclosed in double quotes\n
)\n
|\n
(?: # Import statements (script captured)\n
import\s*\n
(?:\n
(?:\*\s*as\s+\w+|\s+[\w\s{},*]+)\n
\s*from\s*\n
)?\n
|\n
\bimport\(\n
)\n
\s*['"`](\.\/[^'"`\n]++|(\.\.\/)*+[^'"`\n]++)['"`]\s*[;\)]\n
?\n
/mxu
"""
$callback: Closure($matches) {#556 …}
$subject: """
import { Application } from '@hotwired/stimulus';\n
import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
\n
const controllerAttribute = 'data-controller';\n
const loadControllers = (application, eagerControllers, lazyControllers) => {\n
for (const name in eagerControllers) {\n
registerController(name, eagerControllers[name], application);\n
}\n
const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
lazyControllerHandler.start();\n
};\n
const startStimulusApp = () => {\n
const application = Application.start();\n
application.debug = isApplicationDebug;\n
loadControllers(application, eagerControllers, lazyControllers);\n
return application;\n
};\n
class StimulusLazyControllerHandler {\n
constructor(application, lazyControllers) {\n
this.application = application;\n
this.lazyControllers = lazyControllers;\n
}\n
start() {\n
this.lazyLoadExistingControllers(document.documentElement);\n
this.lazyLoadNewControllers(document.documentElement);\n
}\n
lazyLoadExistingControllers(element) {\n
Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
.flatMap(extractControllerNamesFrom)\n
.forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
loadLazyController(name) {\n
if (!this.lazyControllers[name]) {\n
return;\n
}\n
const controllerLoader = this.lazyControllers[name];\n
delete this.lazyControllers[name];\n
if (!canRegisterController(name, this.application)) {\n
return;\n
}\n
this.application.logDebugActivity(name, 'lazy:loading');\n
controllerLoader()\n
.then((controllerModule) => {\n
this.application.logDebugActivity(name, 'lazy:loaded');\n
registerController(name, controllerModule.default, this.application);\n
})\n
.catch((error) => {\n
console.error(`Error loading controller "${name}":`, error);\n
});\n
}\n
lazyLoadNewControllers(element) {\n
if (Object.keys(this.lazyControllers).length === 0) {\n
return;\n
}\n
new MutationObserver((mutationsList) => {\n
for (const mutation of mutationsList) {\n
switch (mutation.type) {\n
case 'childList': {\n
for (const node of mutation.addedNodes) {\n
if (node instanceof Element) {\n
extractControllerNamesFrom(node).forEach((controllerName) => {\n
this.loadLazyController(controllerName);\n
});\n
}\n
}\n
break;\n
}\n
case 'attributes': {\n
if (mutation.attributeName === controllerAttribute) {\n
extractControllerNamesFrom(mutation.target).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
}\n
}\n
}\n
}).observe(element, {\n
attributeFilter: [controllerAttribute],\n
subtree: true,\n
childList: true,\n
});\n
}\n
}\n
function registerController(name, controller, application) {\n
if (canRegisterController(name, application)) {\n
application.register(name, controller);\n
}\n
}\n
function extractControllerNamesFrom(element) {\n
const controllerNameValue = element.getAttribute(controllerAttribute);\n
if (!controllerNameValue) {\n
return [];\n
}\n
return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
}\n
function canRegisterController(name, application) {\n
return !application.router.modulesByIdentifier.has(name);\n
}\n
\n
export { loadControllers, startStimulusApp };\n
"""
$limit: -1
&$count: null
$flags: 256
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/AssetMapperCompiler.php:40 {
Symfony\Component\AssetMapper\AssetMapperCompiler->compile(string $content, MappedAsset $asset): string …
›
› $content = $compiler->compile($content, $asset, $this->assetMapper ??= ($this->assetMapperFactory)());
› }
arguments: {
$content: """
import { Application } from '@hotwired/stimulus';\n
import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
\n
const controllerAttribute = 'data-controller';\n
const loadControllers = (application, eagerControllers, lazyControllers) => {\n
for (const name in eagerControllers) {\n
registerController(name, eagerControllers[name], application);\n
}\n
const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
lazyControllerHandler.start();\n
};\n
const startStimulusApp = () => {\n
const application = Application.start();\n
application.debug = isApplicationDebug;\n
loadControllers(application, eagerControllers, lazyControllers);\n
return application;\n
};\n
class StimulusLazyControllerHandler {\n
constructor(application, lazyControllers) {\n
this.application = application;\n
this.lazyControllers = lazyControllers;\n
}\n
start() {\n
this.lazyLoadExistingControllers(document.documentElement);\n
this.lazyLoadNewControllers(document.documentElement);\n
}\n
lazyLoadExistingControllers(element) {\n
Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
.flatMap(extractControllerNamesFrom)\n
.forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
loadLazyController(name) {\n
if (!this.lazyControllers[name]) {\n
return;\n
}\n
const controllerLoader = this.lazyControllers[name];\n
delete this.lazyControllers[name];\n
if (!canRegisterController(name, this.application)) {\n
return;\n
}\n
this.application.logDebugActivity(name, 'lazy:loading');\n
controllerLoader()\n
.then((controllerModule) => {\n
this.application.logDebugActivity(name, 'lazy:loaded');\n
registerController(name, controllerModule.default, this.application);\n
})\n
.catch((error) => {\n
console.error(`Error loading controller "${name}":`, error);\n
});\n
}\n
lazyLoadNewControllers(element) {\n
if (Object.keys(this.lazyControllers).length === 0) {\n
return;\n
}\n
new MutationObserver((mutationsList) => {\n
for (const mutation of mutationsList) {\n
switch (mutation.type) {\n
case 'childList': {\n
for (const node of mutation.addedNodes) {\n
if (node instanceof Element) {\n
extractControllerNamesFrom(node).forEach((controllerName) => {\n
this.loadLazyController(controllerName);\n
});\n
}\n
}\n
break;\n
}\n
case 'attributes': {\n
if (mutation.attributeName === controllerAttribute) {\n
extractControllerNamesFrom(mutation.target).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
}\n
}\n
}\n
}).observe(element, {\n
attributeFilter: [controllerAttribute],\n
subtree: true,\n
childList: true,\n
});\n
}\n
}\n
function registerController(name, controller, application) {\n
if (canRegisterController(name, application)) {\n
application.register(name, controller);\n
}\n
}\n
function extractControllerNamesFrom(element) {\n
const controllerNameValue = element.getAttribute(controllerAttribute);\n
if (!controllerNameValue) {\n
return [];\n
}\n
return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
}\n
function canRegisterController(name, application) {\n
return !application.router.modulesByIdentifier.has(name);\n
}\n
\n
export { loadControllers, startStimulusApp };\n
"""
$asset: Symfony\Component\AssetMapper\MappedAsset {#520 …}
$assetMapper: Symfony\Component\AssetMapper\AssetMapper {#286 …}
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:107 {
Symfony\Component\AssetMapper\Factory\MappedAssetFactory->compileContent(MappedAsset $asset): ?string …
› $content = (new Filesystem())->readFile($asset->sourcePath);
› $compiled = $this->compiler->compile($content, $asset);
›
arguments: {
$content: """
import { Application } from '@hotwired/stimulus';\n
import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
\n
const controllerAttribute = 'data-controller';\n
const loadControllers = (application, eagerControllers, lazyControllers) => {\n
for (const name in eagerControllers) {\n
registerController(name, eagerControllers[name], application);\n
}\n
const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
lazyControllerHandler.start();\n
};\n
const startStimulusApp = () => {\n
const application = Application.start();\n
application.debug = isApplicationDebug;\n
loadControllers(application, eagerControllers, lazyControllers);\n
return application;\n
};\n
class StimulusLazyControllerHandler {\n
constructor(application, lazyControllers) {\n
this.application = application;\n
this.lazyControllers = lazyControllers;\n
}\n
start() {\n
this.lazyLoadExistingControllers(document.documentElement);\n
this.lazyLoadNewControllers(document.documentElement);\n
}\n
lazyLoadExistingControllers(element) {\n
Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
.flatMap(extractControllerNamesFrom)\n
.forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
loadLazyController(name) {\n
if (!this.lazyControllers[name]) {\n
return;\n
}\n
const controllerLoader = this.lazyControllers[name];\n
delete this.lazyControllers[name];\n
if (!canRegisterController(name, this.application)) {\n
return;\n
}\n
this.application.logDebugActivity(name, 'lazy:loading');\n
controllerLoader()\n
.then((controllerModule) => {\n
this.application.logDebugActivity(name, 'lazy:loaded');\n
registerController(name, controllerModule.default, this.application);\n
})\n
.catch((error) => {\n
console.error(`Error loading controller "${name}":`, error);\n
});\n
}\n
lazyLoadNewControllers(element) {\n
if (Object.keys(this.lazyControllers).length === 0) {\n
return;\n
}\n
new MutationObserver((mutationsList) => {\n
for (const mutation of mutationsList) {\n
switch (mutation.type) {\n
case 'childList': {\n
for (const node of mutation.addedNodes) {\n
if (node instanceof Element) {\n
extractControllerNamesFrom(node).forEach((controllerName) => {\n
this.loadLazyController(controllerName);\n
});\n
}\n
}\n
break;\n
}\n
case 'attributes': {\n
if (mutation.attributeName === controllerAttribute) {\n
extractControllerNamesFrom(mutation.target).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
}\n
}\n
}\n
}).observe(element, {\n
attributeFilter: [controllerAttribute],\n
subtree: true,\n
childList: true,\n
});\n
}\n
}\n
function registerController(name, controller, application) {\n
if (canRegisterController(name, application)) {\n
application.register(name, controller);\n
}\n
}\n
function extractControllerNamesFrom(element) {\n
const controllerNameValue = element.getAttribute(controllerAttribute);\n
if (!controllerNameValue) {\n
return [];\n
}\n
return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
}\n
function canRegisterController(name, application) {\n
return !application.router.modulesByIdentifier.has(name);\n
}\n
\n
export { loadControllers, startStimulusApp };\n
"""
$asset: Symfony\Component\AssetMapper\MappedAsset {#520 …}
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:51 {
Symfony\Component\AssetMapper\Factory\MappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
›
› $content = $this->compileContent($asset);
› [$digest, $isPredigested] = $this->getDigest($asset, $content);
arguments: {
$asset: Symfony\Component\AssetMapper\MappedAsset {#520 …}
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/Factory/CachedMappedAssetFactory.php:43 {
Symfony\Component\AssetMapper\Factory\CachedMappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
›
› $mappedAsset = $this->innerFactory->createMappedAsset($logicalPath, $sourcePath);
›
arguments: {
$logicalPath: "@symfony/stimulus-bundle/loader.js"
$sourcePath: "/home/vincentgq/www/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/AssetMapper.php:41 {
Symfony\Component\AssetMapper\AssetMapper->getAsset(string $logicalPath): MappedAsset …
›
› return $this->mappedAssetFactory->createMappedAsset($logicalPath, $filePath);
› }
arguments: {
$logicalPath: "@symfony/stimulus-bundle/loader.js"
$sourcePath: "/home/vincentgq/www/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/AssetMapper.php:47 {
Symfony\Component\AssetMapper\AssetMapper->allAssets(): iterable …
› foreach ($this->mapperRepository->all() as $logicalPath => $filePath) {
› $asset = $this->getAsset($logicalPath);
› if (null === $asset) {
arguments: {
$logicalPath: "@symfony/stimulus-bundle/loader.js"
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/AssetMapperDevServerSubscriber.php:193 {
Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber->findAssetFromCache(string $pathInfo): MappedAsset …
› $asset = null;
› foreach ($this->assetMapper->allAssets() as $assetCandidate) {
› if ($pathInfo === $assetCandidate->publicPath) {
}
/home/vincentgq/www/vendor/symfony/asset-mapper/AssetMapperDevServerSubscriber.php:127 {
Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber->onKernelRequest(RequestEvent $event): void …
›
› $asset = $this->findAssetFromCache($pathInfo);
›
arguments: {
$pathInfo: "/assets/"
}
}
/home/vincentgq/www/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115 {
Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object $event, string $eventName, EventDispatcherInterface $dispatcher): void …
› try {
› ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
› } finally {
arguments: {
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#197 …}
...: {
"kernel.request"
Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#50 …}
}
}
}
/home/vincentgq/www/vendor/symfony/event-dispatcher/EventDispatcher.php:206 {
Symfony\Component\EventDispatcher\EventDispatcher->callListeners(iterable $listeners, string $eventName, object $event): void …
› }
› $listener($event, $eventName, $this);
› }
arguments: {
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#197 …}
$eventName: "kernel.request"
$dispatcher: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#50 …}
}
}
/home/vincentgq/www/vendor/symfony/event-dispatcher/EventDispatcher.php:56 {
Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object $event, ?string $eventName = null): object …
› if ($listeners) {
› $this->callListeners($listeners, $eventName, $event);
› }
arguments: {
$listeners: [ …13]
$eventName: "kernel.request"
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#197 …}
}
}
/home/vincentgq/www/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:122 {
Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object $event, ?string $eventName = null): object …
› try {
› $this->dispatcher->dispatch($event, $eventName);
› } finally {
arguments: {
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#197 …}
$eventName: "kernel.request"
}
}
/home/vincentgq/www/vendor/symfony/http-kernel/HttpKernel.php:159 {
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
› $event = new RequestEvent($this, $request, $type);
› $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
›
arguments: {
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#197 …}
$eventName: "kernel.request"
}
}
/home/vincentgq/www/vendor/symfony/http-kernel/HttpKernel.php:76 {
Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $response = $this->handleRaw($request, $type);
› } catch (\Throwable $e) {
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#10 …}
$type: 1
}
}
/home/vincentgq/www/vendor/symfony/http-kernel/Kernel.php:182 {
Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $this->getHttpKernel()->handle($request, $type, $catch);
› } finally {
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#10 …}
$type: 1
$catch: true
}
}
/home/vincentgq/www/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
› {
› $response = $this->kernel->handle($this->request);
›
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#10 …}
}
}
/home/vincentgq/www/vendor/autoload_runtime.php:29 {
require_once …
› ->getRunner($app)
› ->run()
› );
}
/home/vincentgq/www/public/index.php:5 {
›
› require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
›
arguments: {
"/home/vincentgq/www/vendor/autoload_runtime.php"
}
}
}
} |
logger |
Symfony\Bridge\Monolog\Processor\DebugProcessor {#25
-records: [
"" => [
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.443+02:00"
"message" => "Warning: Zend OPcache API is restricted by "restrict_api" configuration directive"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"exception" => Symfony\Component\ErrorHandler\Exception\SilencedErrorContext {#34
+count: 37
-severity: E_WARNING
trace: {
/home/vincentgq/www/vendor/symfony/error-handler/DebugClassLoader.php:298 {
Symfony\Component\ErrorHandler\DebugClassLoader->loadClass(string $class): void …
› // no-op
› } elseif (\function_exists('opcache_is_script_cached') && @opcache_is_script_cached($file)) {
› include $file;
}
/home/vincentgq/www/vendor/doctrine/doctrine-bundle/src/DoctrineBundle.php:132 {
›
› $this->autoloader = Autoloader::register($dir, $namespace, $proxyGenerator);
› }
}
}
}
]
"channel" => "php"
]
]
10 => [
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.478+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.478+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\UX\Turbo\Request\RequestListener::__invoke"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.478+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.478+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.478+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.478+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.478+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.479+02:00"
"message" => "Uncaught PHP Exception LogicException: "The autoimport "tom-select/dist/css/tom-select.default.css" could not be found in importmap.php. Try running "php bin/console importmap:require tom-select/dist/css/tom-select.default.css"." at AutoImportLocator.php line 67"
"priority" => 500
"priorityName" => "CRITICAL"
"context" => [
"exception" => LogicException {#575
#message: "The autoimport "tom-select/dist/css/tom-select.default.css" could not be found in importmap.php. Try running "php bin/console importmap:require tom-select/dist/css/tom-select.default.css"."
#code: 0
#file: "/home/vincentgq/www/vendor/symfony/stimulus-bundle/src/AssetMapper/AutoImportLocator.php"
#line: 67
trace: {
/home/vincentgq/www/vendor/symfony/stimulus-bundle/src/AssetMapper/AutoImportLocator.php:67 {
Symfony\UX\StimulusBundle\AssetMapper\AutoImportLocator->locateAutoImport(string $path, UxPackageMetadata $packageMetadata): MappedControllerAutoImport …
› if (!$entry) {
› throw new \LogicException(\sprintf('The autoimport "%s" could not be found in importmap.php. Try running "php bin/console importmap:require %s".', $path, $path));
› }
}
/home/vincentgq/www/vendor/symfony/stimulus-bundle/src/AssetMapper/ControllersMapGenerator.php:166 {
Symfony\UX\StimulusBundle\AssetMapper\ControllersMapGenerator->collectAutoImports(array $autoImports, UxPackageMetadata $currentPackageMetadata): array …
›
› $autoImportItems[] = $this->autoImportLocator->locateAutoImport($path, $currentPackageMetadata);
› }
arguments: {
$path: "tom-select/dist/css/tom-select.default.css"
$packageMetadata: Symfony\UX\StimulusBundle\Ux\UxPackageMetadata {#562 …}
}
}
/home/vincentgq/www/vendor/symfony/stimulus-bundle/src/AssetMapper/ControllersMapGenerator.php:138 {
Symfony\UX\StimulusBundle\AssetMapper\ControllersMapGenerator->loadUxControllers(): array …
›
› $autoImports = $this->collectAutoImports($localControllerConfig['autoimport'] ?? [], $packageMetadata);
›
arguments: {
$autoImports: [ …3]
$currentPackageMetadata: Symfony\UX\StimulusBundle\Ux\UxPackageMetadata {#562 …}
}
}
/home/vincentgq/www/vendor/symfony/stimulus-bundle/src/AssetMapper/ControllersMapGenerator.php:46 {
Symfony\UX\StimulusBundle\AssetMapper\ControllersMapGenerator->getControllersMap(): array …
› return array_merge(
› $this->loadUxControllers(),
› $this->loadCustomControllers(),
}
/home/vincentgq/www/vendor/symfony/stimulus-bundle/src/AssetMapper/StimulusLoaderJavaScriptCompiler.php:52 {
Symfony\UX\StimulusBundle\AssetMapper\StimulusLoaderJavaScriptCompiler->compile(string $content, MappedAsset $asset, AssetMapperInterface $assetMapper): string …
›
› foreach ($this->controllersMapGenerator->getControllersMap() as $name => $mappedControllerAsset) {
› // @legacy: backwards compatibility with Symfony 6.3
}
/home/vincentgq/www/vendor/symfony/asset-mapper/AssetMapperCompiler.php:40 {
Symfony\Component\AssetMapper\AssetMapperCompiler->compile(string $content, MappedAsset $asset): string …
›
› $content = $compiler->compile($content, $asset, $this->assetMapper ??= ($this->assetMapperFactory)());
› }
arguments: {
$content: """
import { Application } from '@hotwired/stimulus';\n
import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
\n
const controllerAttribute = 'data-controller';\n
const loadControllers = (application, eagerControllers, lazyControllers) => {\n
for (const name in eagerControllers) {\n
registerController(name, eagerControllers[name], application);\n
}\n
const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
lazyControllerHandler.start();\n
};\n
const startStimulusApp = () => {\n
const application = Application.start();\n
application.debug = isApplicationDebug;\n
loadControllers(application, eagerControllers, lazyControllers);\n
return application;\n
};\n
class StimulusLazyControllerHandler {\n
constructor(application, lazyControllers) {\n
this.application = application;\n
this.lazyControllers = lazyControllers;\n
}\n
start() {\n
this.lazyLoadExistingControllers(document.documentElement);\n
this.lazyLoadNewControllers(document.documentElement);\n
}\n
lazyLoadExistingControllers(element) {\n
Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
.flatMap(extractControllerNamesFrom)\n
.forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
loadLazyController(name) {\n
if (!this.lazyControllers[name]) {\n
return;\n
}\n
const controllerLoader = this.lazyControllers[name];\n
delete this.lazyControllers[name];\n
if (!canRegisterController(name, this.application)) {\n
return;\n
}\n
this.application.logDebugActivity(name, 'lazy:loading');\n
controllerLoader()\n
.then((controllerModule) => {\n
this.application.logDebugActivity(name, 'lazy:loaded');\n
registerController(name, controllerModule.default, this.application);\n
})\n
.catch((error) => {\n
console.error(`Error loading controller "${name}":`, error);\n
});\n
}\n
lazyLoadNewControllers(element) {\n
if (Object.keys(this.lazyControllers).length === 0) {\n
return;\n
}\n
new MutationObserver((mutationsList) => {\n
for (const mutation of mutationsList) {\n
switch (mutation.type) {\n
case 'childList': {\n
for (const node of mutation.addedNodes) {\n
if (node instanceof Element) {\n
extractControllerNamesFrom(node).forEach((controllerName) => {\n
this.loadLazyController(controllerName);\n
});\n
}\n
}\n
break;\n
}\n
case 'attributes': {\n
if (mutation.attributeName === controllerAttribute) {\n
extractControllerNamesFrom(mutation.target).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
}\n
}\n
}\n
}).observe(element, {\n
attributeFilter: [controllerAttribute],\n
subtree: true,\n
childList: true,\n
});\n
}\n
}\n
function registerController(name, controller, application) {\n
if (canRegisterController(name, application)) {\n
application.register(name, controller);\n
}\n
}\n
function extractControllerNamesFrom(element) {\n
const controllerNameValue = element.getAttribute(controllerAttribute);\n
if (!controllerNameValue) {\n
return [];\n
}\n
return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
}\n
function canRegisterController(name, application) {\n
return !application.router.modulesByIdentifier.has(name);\n
}\n
\n
export { loadControllers, startStimulusApp };\n
"""
$asset: Symfony\Component\AssetMapper\MappedAsset {#520 …}
$assetMapper: Symfony\Component\AssetMapper\AssetMapper {#286 …}
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:107 {
Symfony\Component\AssetMapper\Factory\MappedAssetFactory->compileContent(MappedAsset $asset): ?string …
› $content = (new Filesystem())->readFile($asset->sourcePath);
› $compiled = $this->compiler->compile($content, $asset);
›
arguments: {
$content: """
import { Application } from '@hotwired/stimulus';\n
import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
\n
const controllerAttribute = 'data-controller';\n
const loadControllers = (application, eagerControllers, lazyControllers) => {\n
for (const name in eagerControllers) {\n
registerController(name, eagerControllers[name], application);\n
}\n
const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
lazyControllerHandler.start();\n
};\n
const startStimulusApp = () => {\n
const application = Application.start();\n
application.debug = isApplicationDebug;\n
loadControllers(application, eagerControllers, lazyControllers);\n
return application;\n
};\n
class StimulusLazyControllerHandler {\n
constructor(application, lazyControllers) {\n
this.application = application;\n
this.lazyControllers = lazyControllers;\n
}\n
start() {\n
this.lazyLoadExistingControllers(document.documentElement);\n
this.lazyLoadNewControllers(document.documentElement);\n
}\n
lazyLoadExistingControllers(element) {\n
Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
.flatMap(extractControllerNamesFrom)\n
.forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
loadLazyController(name) {\n
if (!this.lazyControllers[name]) {\n
return;\n
}\n
const controllerLoader = this.lazyControllers[name];\n
delete this.lazyControllers[name];\n
if (!canRegisterController(name, this.application)) {\n
return;\n
}\n
this.application.logDebugActivity(name, 'lazy:loading');\n
controllerLoader()\n
.then((controllerModule) => {\n
this.application.logDebugActivity(name, 'lazy:loaded');\n
registerController(name, controllerModule.default, this.application);\n
})\n
.catch((error) => {\n
console.error(`Error loading controller "${name}":`, error);\n
});\n
}\n
lazyLoadNewControllers(element) {\n
if (Object.keys(this.lazyControllers).length === 0) {\n
return;\n
}\n
new MutationObserver((mutationsList) => {\n
for (const mutation of mutationsList) {\n
switch (mutation.type) {\n
case 'childList': {\n
for (const node of mutation.addedNodes) {\n
if (node instanceof Element) {\n
extractControllerNamesFrom(node).forEach((controllerName) => {\n
this.loadLazyController(controllerName);\n
});\n
}\n
}\n
break;\n
}\n
case 'attributes': {\n
if (mutation.attributeName === controllerAttribute) {\n
extractControllerNamesFrom(mutation.target).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
}\n
}\n
}\n
}).observe(element, {\n
attributeFilter: [controllerAttribute],\n
subtree: true,\n
childList: true,\n
});\n
}\n
}\n
function registerController(name, controller, application) {\n
if (canRegisterController(name, application)) {\n
application.register(name, controller);\n
}\n
}\n
function extractControllerNamesFrom(element) {\n
const controllerNameValue = element.getAttribute(controllerAttribute);\n
if (!controllerNameValue) {\n
return [];\n
}\n
return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
}\n
function canRegisterController(name, application) {\n
return !application.router.modulesByIdentifier.has(name);\n
}\n
\n
export { loadControllers, startStimulusApp };\n
"""
$asset: Symfony\Component\AssetMapper\MappedAsset {#520 …}
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:51 {
Symfony\Component\AssetMapper\Factory\MappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
›
› $content = $this->compileContent($asset);
› [$digest, $isPredigested] = $this->getDigest($asset, $content);
arguments: {
$asset: Symfony\Component\AssetMapper\MappedAsset {#520 …}
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/Factory/CachedMappedAssetFactory.php:43 {
Symfony\Component\AssetMapper\Factory\CachedMappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
›
› $mappedAsset = $this->innerFactory->createMappedAsset($logicalPath, $sourcePath);
›
arguments: {
$logicalPath: "@symfony/stimulus-bundle/loader.js"
$sourcePath: "/home/vincentgq/www/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/AssetMapper.php:41 {
Symfony\Component\AssetMapper\AssetMapper->getAsset(string $logicalPath): MappedAsset …
›
› return $this->mappedAssetFactory->createMappedAsset($logicalPath, $filePath);
› }
arguments: {
$logicalPath: "@symfony/stimulus-bundle/loader.js"
$sourcePath: "/home/vincentgq/www/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/AssetMapper.php:62 {
Symfony\Component\AssetMapper\AssetMapper->getAssetFromSourcePath(string $sourcePath): MappedAsset …
›
› return $this->getAsset($logicalPath);
› }
arguments: {
$logicalPath: "@symfony/stimulus-bundle/controllers.js"
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/Compiler/JavaScriptImportPathCompiler.php:209 {
Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->findAssetForRelativeImport(string $importedModule, MappedAsset $asset, AssetMapperInterface $assetMapper): MappedAsset …
› try {
› $dependentAsset = $assetMapper->getAssetFromSourcePath($resolvedSourcePath);
› } catch (CircularAssetsException $exception) {
arguments: {
$sourcePath: "/home/vincentgq/www/vendor/symfony/stimulus-bundle/assets/dist/controllers.js"
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/Compiler/JavaScriptImportPathCompiler.php:88 {
Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->Symfony\Component\AssetMapper\Compiler\{closure} …
› } else {
› $dependentAsset = $this->findAssetForRelativeImport($importedModule, $asset, $assetMapper);
› }
arguments: {
$importedModule: "./controllers.js"
$asset: Symfony\Component\AssetMapper\MappedAsset {#520 …}
$assetMapper: Symfony\Component\AssetMapper\AssetMapper {#286 …}
}
}
Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->Symfony\Component\AssetMapper\Compiler\{closure}() {}
/home/vincentgq/www/vendor/symfony/asset-mapper/Compiler/JavaScriptImportPathCompiler.php:64 {
Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->compile(string $content, MappedAsset $asset, AssetMapperInterface $assetMapper): string …
› {
› return preg_replace_callback(self::IMPORT_PATTERN, function ($matches) use ($asset, $assetMapper, $content) {
› $fullImportString = $matches[0][0];
arguments: {
$pattern: """
/\n
^(?:\/\/.*) # Lines that start with comments\n
|\n
(?:\n
'(?:[^'\\\n]|\\.)*+' # Strings enclosed in single quotes\n
|\n
"(?:[^"\\\n]|\\.)*+" # Strings enclosed in double quotes\n
)\n
|\n
(?: # Import statements (script captured)\n
import\s*\n
(?:\n
(?:\*\s*as\s+\w+|\s+[\w\s{},*]+)\n
\s*from\s*\n
)?\n
|\n
\bimport\(\n
)\n
\s*['"`](\.\/[^'"`\n]++|(\.\.\/)*+[^'"`\n]++)['"`]\s*[;\)]\n
?\n
/mxu
"""
$callback: Closure($matches) {#556 …}
$subject: """
import { Application } from '@hotwired/stimulus';\n
import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
\n
const controllerAttribute = 'data-controller';\n
const loadControllers = (application, eagerControllers, lazyControllers) => {\n
for (const name in eagerControllers) {\n
registerController(name, eagerControllers[name], application);\n
}\n
const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
lazyControllerHandler.start();\n
};\n
const startStimulusApp = () => {\n
const application = Application.start();\n
application.debug = isApplicationDebug;\n
loadControllers(application, eagerControllers, lazyControllers);\n
return application;\n
};\n
class StimulusLazyControllerHandler {\n
constructor(application, lazyControllers) {\n
this.application = application;\n
this.lazyControllers = lazyControllers;\n
}\n
start() {\n
this.lazyLoadExistingControllers(document.documentElement);\n
this.lazyLoadNewControllers(document.documentElement);\n
}\n
lazyLoadExistingControllers(element) {\n
Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
.flatMap(extractControllerNamesFrom)\n
.forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
loadLazyController(name) {\n
if (!this.lazyControllers[name]) {\n
return;\n
}\n
const controllerLoader = this.lazyControllers[name];\n
delete this.lazyControllers[name];\n
if (!canRegisterController(name, this.application)) {\n
return;\n
}\n
this.application.logDebugActivity(name, 'lazy:loading');\n
controllerLoader()\n
.then((controllerModule) => {\n
this.application.logDebugActivity(name, 'lazy:loaded');\n
registerController(name, controllerModule.default, this.application);\n
})\n
.catch((error) => {\n
console.error(`Error loading controller "${name}":`, error);\n
});\n
}\n
lazyLoadNewControllers(element) {\n
if (Object.keys(this.lazyControllers).length === 0) {\n
return;\n
}\n
new MutationObserver((mutationsList) => {\n
for (const mutation of mutationsList) {\n
switch (mutation.type) {\n
case 'childList': {\n
for (const node of mutation.addedNodes) {\n
if (node instanceof Element) {\n
extractControllerNamesFrom(node).forEach((controllerName) => {\n
this.loadLazyController(controllerName);\n
});\n
}\n
}\n
break;\n
}\n
case 'attributes': {\n
if (mutation.attributeName === controllerAttribute) {\n
extractControllerNamesFrom(mutation.target).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
}\n
}\n
}\n
}).observe(element, {\n
attributeFilter: [controllerAttribute],\n
subtree: true,\n
childList: true,\n
});\n
}\n
}\n
function registerController(name, controller, application) {\n
if (canRegisterController(name, application)) {\n
application.register(name, controller);\n
}\n
}\n
function extractControllerNamesFrom(element) {\n
const controllerNameValue = element.getAttribute(controllerAttribute);\n
if (!controllerNameValue) {\n
return [];\n
}\n
return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
}\n
function canRegisterController(name, application) {\n
return !application.router.modulesByIdentifier.has(name);\n
}\n
\n
export { loadControllers, startStimulusApp };\n
"""
$limit: -1
&$count: null
$flags: 256
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/AssetMapperCompiler.php:40 {
Symfony\Component\AssetMapper\AssetMapperCompiler->compile(string $content, MappedAsset $asset): string …
›
› $content = $compiler->compile($content, $asset, $this->assetMapper ??= ($this->assetMapperFactory)());
› }
arguments: {
$content: """
import { Application } from '@hotwired/stimulus';\n
import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
\n
const controllerAttribute = 'data-controller';\n
const loadControllers = (application, eagerControllers, lazyControllers) => {\n
for (const name in eagerControllers) {\n
registerController(name, eagerControllers[name], application);\n
}\n
const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
lazyControllerHandler.start();\n
};\n
const startStimulusApp = () => {\n
const application = Application.start();\n
application.debug = isApplicationDebug;\n
loadControllers(application, eagerControllers, lazyControllers);\n
return application;\n
};\n
class StimulusLazyControllerHandler {\n
constructor(application, lazyControllers) {\n
this.application = application;\n
this.lazyControllers = lazyControllers;\n
}\n
start() {\n
this.lazyLoadExistingControllers(document.documentElement);\n
this.lazyLoadNewControllers(document.documentElement);\n
}\n
lazyLoadExistingControllers(element) {\n
Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
.flatMap(extractControllerNamesFrom)\n
.forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
loadLazyController(name) {\n
if (!this.lazyControllers[name]) {\n
return;\n
}\n
const controllerLoader = this.lazyControllers[name];\n
delete this.lazyControllers[name];\n
if (!canRegisterController(name, this.application)) {\n
return;\n
}\n
this.application.logDebugActivity(name, 'lazy:loading');\n
controllerLoader()\n
.then((controllerModule) => {\n
this.application.logDebugActivity(name, 'lazy:loaded');\n
registerController(name, controllerModule.default, this.application);\n
})\n
.catch((error) => {\n
console.error(`Error loading controller "${name}":`, error);\n
});\n
}\n
lazyLoadNewControllers(element) {\n
if (Object.keys(this.lazyControllers).length === 0) {\n
return;\n
}\n
new MutationObserver((mutationsList) => {\n
for (const mutation of mutationsList) {\n
switch (mutation.type) {\n
case 'childList': {\n
for (const node of mutation.addedNodes) {\n
if (node instanceof Element) {\n
extractControllerNamesFrom(node).forEach((controllerName) => {\n
this.loadLazyController(controllerName);\n
});\n
}\n
}\n
break;\n
}\n
case 'attributes': {\n
if (mutation.attributeName === controllerAttribute) {\n
extractControllerNamesFrom(mutation.target).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
}\n
}\n
}\n
}).observe(element, {\n
attributeFilter: [controllerAttribute],\n
subtree: true,\n
childList: true,\n
});\n
}\n
}\n
function registerController(name, controller, application) {\n
if (canRegisterController(name, application)) {\n
application.register(name, controller);\n
}\n
}\n
function extractControllerNamesFrom(element) {\n
const controllerNameValue = element.getAttribute(controllerAttribute);\n
if (!controllerNameValue) {\n
return [];\n
}\n
return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
}\n
function canRegisterController(name, application) {\n
return !application.router.modulesByIdentifier.has(name);\n
}\n
\n
export { loadControllers, startStimulusApp };\n
"""
$asset: Symfony\Component\AssetMapper\MappedAsset {#520 …}
$assetMapper: Symfony\Component\AssetMapper\AssetMapper {#286 …}
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:107 {
Symfony\Component\AssetMapper\Factory\MappedAssetFactory->compileContent(MappedAsset $asset): ?string …
› $content = (new Filesystem())->readFile($asset->sourcePath);
› $compiled = $this->compiler->compile($content, $asset);
›
arguments: {
$content: """
import { Application } from '@hotwired/stimulus';\n
import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
\n
const controllerAttribute = 'data-controller';\n
const loadControllers = (application, eagerControllers, lazyControllers) => {\n
for (const name in eagerControllers) {\n
registerController(name, eagerControllers[name], application);\n
}\n
const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
lazyControllerHandler.start();\n
};\n
const startStimulusApp = () => {\n
const application = Application.start();\n
application.debug = isApplicationDebug;\n
loadControllers(application, eagerControllers, lazyControllers);\n
return application;\n
};\n
class StimulusLazyControllerHandler {\n
constructor(application, lazyControllers) {\n
this.application = application;\n
this.lazyControllers = lazyControllers;\n
}\n
start() {\n
this.lazyLoadExistingControllers(document.documentElement);\n
this.lazyLoadNewControllers(document.documentElement);\n
}\n
lazyLoadExistingControllers(element) {\n
Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
.flatMap(extractControllerNamesFrom)\n
.forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
loadLazyController(name) {\n
if (!this.lazyControllers[name]) {\n
return;\n
}\n
const controllerLoader = this.lazyControllers[name];\n
delete this.lazyControllers[name];\n
if (!canRegisterController(name, this.application)) {\n
return;\n
}\n
this.application.logDebugActivity(name, 'lazy:loading');\n
controllerLoader()\n
.then((controllerModule) => {\n
this.application.logDebugActivity(name, 'lazy:loaded');\n
registerController(name, controllerModule.default, this.application);\n
})\n
.catch((error) => {\n
console.error(`Error loading controller "${name}":`, error);\n
});\n
}\n
lazyLoadNewControllers(element) {\n
if (Object.keys(this.lazyControllers).length === 0) {\n
return;\n
}\n
new MutationObserver((mutationsList) => {\n
for (const mutation of mutationsList) {\n
switch (mutation.type) {\n
case 'childList': {\n
for (const node of mutation.addedNodes) {\n
if (node instanceof Element) {\n
extractControllerNamesFrom(node).forEach((controllerName) => {\n
this.loadLazyController(controllerName);\n
});\n
}\n
}\n
break;\n
}\n
case 'attributes': {\n
if (mutation.attributeName === controllerAttribute) {\n
extractControllerNamesFrom(mutation.target).forEach((controllerName) => this.loadLazyController(controllerName));\n
}\n
}\n
}\n
}\n
}).observe(element, {\n
attributeFilter: [controllerAttribute],\n
subtree: true,\n
childList: true,\n
});\n
}\n
}\n
function registerController(name, controller, application) {\n
if (canRegisterController(name, application)) {\n
application.register(name, controller);\n
}\n
}\n
function extractControllerNamesFrom(element) {\n
const controllerNameValue = element.getAttribute(controllerAttribute);\n
if (!controllerNameValue) {\n
return [];\n
}\n
return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
}\n
function canRegisterController(name, application) {\n
return !application.router.modulesByIdentifier.has(name);\n
}\n
\n
export { loadControllers, startStimulusApp };\n
"""
$asset: Symfony\Component\AssetMapper\MappedAsset {#520 …}
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:51 {
Symfony\Component\AssetMapper\Factory\MappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
›
› $content = $this->compileContent($asset);
› [$digest, $isPredigested] = $this->getDigest($asset, $content);
arguments: {
$asset: Symfony\Component\AssetMapper\MappedAsset {#520 …}
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/Factory/CachedMappedAssetFactory.php:43 {
Symfony\Component\AssetMapper\Factory\CachedMappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
›
› $mappedAsset = $this->innerFactory->createMappedAsset($logicalPath, $sourcePath);
›
arguments: {
$logicalPath: "@symfony/stimulus-bundle/loader.js"
$sourcePath: "/home/vincentgq/www/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/AssetMapper.php:41 {
Symfony\Component\AssetMapper\AssetMapper->getAsset(string $logicalPath): MappedAsset …
›
› return $this->mappedAssetFactory->createMappedAsset($logicalPath, $filePath);
› }
arguments: {
$logicalPath: "@symfony/stimulus-bundle/loader.js"
$sourcePath: "/home/vincentgq/www/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/AssetMapper.php:47 {
Symfony\Component\AssetMapper\AssetMapper->allAssets(): iterable …
› foreach ($this->mapperRepository->all() as $logicalPath => $filePath) {
› $asset = $this->getAsset($logicalPath);
› if (null === $asset) {
arguments: {
$logicalPath: "@symfony/stimulus-bundle/loader.js"
}
}
/home/vincentgq/www/vendor/symfony/asset-mapper/AssetMapperDevServerSubscriber.php:193 {
Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber->findAssetFromCache(string $pathInfo): MappedAsset …
› $asset = null;
› foreach ($this->assetMapper->allAssets() as $assetCandidate) {
› if ($pathInfo === $assetCandidate->publicPath) {
}
/home/vincentgq/www/vendor/symfony/asset-mapper/AssetMapperDevServerSubscriber.php:127 {
Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber->onKernelRequest(RequestEvent $event): void …
›
› $asset = $this->findAssetFromCache($pathInfo);
›
arguments: {
$pathInfo: "/assets/"
}
}
/home/vincentgq/www/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115 {
Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object $event, string $eventName, EventDispatcherInterface $dispatcher): void …
› try {
› ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
› } finally {
arguments: {
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#197 …}
...: {
"kernel.request"
Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#50 …}
}
}
}
/home/vincentgq/www/vendor/symfony/event-dispatcher/EventDispatcher.php:206 {
Symfony\Component\EventDispatcher\EventDispatcher->callListeners(iterable $listeners, string $eventName, object $event): void …
› }
› $listener($event, $eventName, $this);
› }
arguments: {
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#197 …}
$eventName: "kernel.request"
$dispatcher: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#50 …}
}
}
/home/vincentgq/www/vendor/symfony/event-dispatcher/EventDispatcher.php:56 {
Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object $event, ?string $eventName = null): object …
› if ($listeners) {
› $this->callListeners($listeners, $eventName, $event);
› }
arguments: {
$listeners: [ …13]
$eventName: "kernel.request"
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#197 …}
}
}
/home/vincentgq/www/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:122 {
Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object $event, ?string $eventName = null): object …
› try {
› $this->dispatcher->dispatch($event, $eventName);
› } finally {
arguments: {
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#197 …}
$eventName: "kernel.request"
}
}
/home/vincentgq/www/vendor/symfony/http-kernel/HttpKernel.php:159 {
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
› $event = new RequestEvent($this, $request, $type);
› $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
›
arguments: {
$event: Symfony\Component\HttpKernel\Event\RequestEvent {#197 …}
$eventName: "kernel.request"
}
}
/home/vincentgq/www/vendor/symfony/http-kernel/HttpKernel.php:76 {
Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $response = $this->handleRaw($request, $type);
› } catch (\Throwable $e) {
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#10 …}
$type: 1
}
}
/home/vincentgq/www/vendor/symfony/http-kernel/Kernel.php:182 {
Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $this->getHttpKernel()->handle($request, $type, $catch);
› } finally {
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#10 …}
$type: 1
$catch: true
}
}
/home/vincentgq/www/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
› {
› $response = $this->kernel->handle($this->request);
›
arguments: {
$request: Symfony\Component\HttpFoundation\Request {#10 …}
}
}
/home/vincentgq/www/vendor/autoload_runtime.php:29 {
require_once …
› ->getRunner($app)
› ->run()
› );
}
/home/vincentgq/www/public/index.php:5 {
›
› require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
›
arguments: {
"/home/vincentgq/www/vendor/autoload_runtime.php"
}
}
}
}
]
"channel" => "request"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\WebpackEncoreBundle\EventListener\ExceptionListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::logKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.513+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.513+02:00"
"message" => "Listener "{listener}" stopped propagation of the event "{event}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.517+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.517+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\Security\Csrf\SameOriginCsrfTokenManager::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.517+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.517+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.517+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.517+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.517+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.517+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.517+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.517+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.517+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.517+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.517+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.517+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.517+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.517+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.517+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.517+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.517+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest"
]
"channel" => "event"
]
]
642 => [
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.481+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.481+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\UX\Turbo\Request\RequestListener::__invoke"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.481+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.481+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.481+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.481+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.481+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.481+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.481+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.481+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.481+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.481+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.481+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.489+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.489+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.489+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.490+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.490+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.490+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.490+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "ContainerC6HVIf9\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.490+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\Security\Csrf\SameOriginCsrfTokenManager::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets"
]
"channel" => "event"
]
[
"timestamp" => 1751146868
"timestamp_rfc3339" => "2025-06-28T23:41:08.512+02:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest"
]
"channel" => "event"
]
]
]
-errorCount: [
"" => 0
10 => 1
642 => 0
]
-requestStack: Symfony\Component\HttpKernel\Debug\VirtualRequestStack {#23 …}
} |