From: Raphaƫl Gertz Date: Sun, 8 Dec 2024 04:53:30 +0000 (+0100) Subject: Remove path bundle parameter X-Git-Tag: 0.5.4~14 X-Git-Url: https://git.rapsys.eu/packbundle/commitdiff_plain/67d50a43b1bc369544315f6e407db813ad2edf5c Remove path bundle parameter Add cache and public bundle parameters --- diff --git a/DependencyInjection/RapsysPackExtension.php b/DependencyInjection/RapsysPackExtension.php index fc9efce..3a6ed53 100644 --- a/DependencyInjection/RapsysPackExtension.php +++ b/DependencyInjection/RapsysPackExtension.php @@ -49,8 +49,11 @@ class RapsysPackExtension extends Extension { //Set rapsyspack.alias key $container->setParameter($alias.'.alias', $alias); - //Set rapsyspack.path key - $container->setParameter($alias.'.path', $config['path']); + //Set rapsyspack.cache key + $container->setParameter($alias.'.cache', $config['cache']); + + //Set rapsyspack.public key + $container->setParameter($alias.'.public', $config['public']); //Set rapsyspack.version key $container->setParameter($alias.'.version', RapsysPackBundle::getVersion());