diff --git a/doctrine/phpcr-bundle/2.0/config/packages/doctrine_phpcr.yaml b/doctrine/phpcr-bundle/2.0/config/packages/doctrine_phpcr.yaml new file mode 100644 index 00000000..238a1db3 --- /dev/null +++ b/doctrine/phpcr-bundle/2.0/config/packages/doctrine_phpcr.yaml @@ -0,0 +1,17 @@ +doctrine_phpcr: + session: + backend: + type: jackrabbit + url: 'localhost' + # connection: default + # requires DoctrineCacheBundle + # caches: + # meta: doctrine_cache.providers.phpcr_meta + # nodes: doctrine_cache.providers.phpcr_nodes + # enable logging + # logging: true + # enable profiling in the debug toolbar. + # profiling: true + workspace: '%env(PHPCR_WORKSPACE)%' + username: '%env(PHPCR_USER)%' + password: '%env(PHPCR_PASSWORD)%' diff --git a/doctrine/phpcr-bundle/2.0/manifest.json b/doctrine/phpcr-bundle/2.0/manifest.json new file mode 100644 index 00000000..104bc517 --- /dev/null +++ b/doctrine/phpcr-bundle/2.0/manifest.json @@ -0,0 +1,13 @@ +{ + "bundles": { + "Doctrine\\Bundle\\PHPCRBundle\\DoctrinePHPCRBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "PHPCR_USER": "admin", + "PHPCR_PASSWORD": "admin", + "PHPCR_WORKSPACE": "default" + } +}