X-Git-Url: https://git.rapsys.eu/packbundle/blobdiff_plain/3eefc3274dd672ee30ab7d2013446e08f9d58ff0..691ae8e72c547bb0e20ddbc8810557c6ddaa43f3:/DependencyInjection/Configuration.php?ds=sidebyside diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index d9b1b51..1272ac3 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -42,7 +42,7 @@ 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' => (string)ini_get('user_agent')?:'rapsys_pack/0.2.1', 'redirect' => 5 ], #TODO: migrate to public.path, public.url and router->generateUrl ? @@ -78,10 +78,7 @@ class Configuration implements ConfigurationInterface { ] ], ], - 'public' => [ - 'path' => dirname(__DIR__).'/Resources/public', - 'url' => '/bundles/'.str_replace('_', '', $alias) - ] + 'path' => dirname(__DIR__).'/Resources/public', ]; /** @@ -189,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();