X-Git-Url: https://git.rapsys.eu/packbundle/blobdiff_plain/e0117cc756e4ec7d3336fbed119b90abf0f90818..6065a3af58ca2a4d96134be6f7d533e0189cf590:/DependencyInjection/Configuration.php diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 4856910..2e57ae8 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -42,9 +42,11 @@ class Configuration implements ConfigurationInterface { 'name' => 'asset_url', 'scheme' => 'https://', 'timeout' => (int)ini_get('default_socket_timeout'), - 'agent' => (string)ini_get('user_agent')?:'rapsys_pack/0.2.0', + 'agent' => $alias.'/'.($version = RapsysPackBundle::getVersion()), 'redirect' => 5 ], + #TODO: migrate to public.path, public.url and router->generateUrl ? + #XXX: that would means dropping the PathPackage stuff and use static route like rapsys_pack_facebook 'output' => [ 'css' => '@RapsysPack/css/*.pack.css', 'js' => '@RapsysPack/js/*.pack.js', @@ -76,10 +78,7 @@ class Configuration implements ConfigurationInterface { ] ], ], - 'public' => [ - 'path' => dirname(__DIR__).'/Resources/public', - 'url' => '/bundles/'.str_replace('_', '', $alias) - ] + 'path' => dirname(__DIR__).'/Resources/public', ]; /** @@ -187,13 +186,7 @@ class Configuration implements ConfigurationInterface { ->end() ->end() ->end() - ->arrayNode('public') - ->addDefaultsIfNotSet() - ->children() - ->scalarNode('path')->cannotBeEmpty()->defaultValue($defaults['public']['path'])->end() - ->scalarNode('url')->cannotBeEmpty()->defaultValue($defaults['public']['url'])->end() - ->end() - ->end() + ->scalarNode('path')->cannotBeEmpty()->defaultValue($defaults['path'])->end() ->end() ->end();