IP : 3.147.74.10Hostname : host45.registrar-servers.comKernel : Linux host45.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64Disable Function : None :) OS : Linux
PATH:
/
home/
../
var/
softaculous/
zurmo/
../
s9y/
./
../
cmssimple/
../
ojs/
../
pimcore/
services.yaml/
/
parameters: secret: [[secret]]
# customize the full path to external executables # normally they are auto-detected by `which program` or auto-discovered in the configured path in # System Settings -> General -> Additional $PATH variable # but in general it's a good idea to have your programs in your $PATH environment variable (system wide)
services: # default configuration for services in *this* file _defaults: # automatically injects dependencies in your services autowire: true # automatically registers your services as commands, event subscribers, etc. autoconfigure: true # this means you cannot fetch services directly from the container via $container->get() # if you need to do this, you can override this setting on individual services public: false # # CONTROLLERS #
# auto-register all controllers as services App\Controller\: resource: '../src/Controller' public: true tags: [ 'controller.service_arguments' ]
# # COMMANDS #
# auto-register all commands as services App\Command\: resource: '../src/Command/*' tags: [ 'console.command' ]
# Example custom templating helper # App\Templating\Helper\Example: # # templating helpers need to be public as they # # are fetched from the container on demand # public: true # tags: # - { name: templating.helper, alias: fooBar }
# Example event listener for objects # App\EventListener\TestListener: # tags: # - { name: kernel.event_listener, event: pimcore.dataobject.preUpdate, method: onObjectPreUpdate }