X-Git-Url: https://git.rapsys.eu/.gitweb.cgi/packbundle/blobdiff_plain/6bc3a323095049fba5ac8bb2b1a2cef1e82b8df5..08acfd9db7f2dbc2ce527f1470764fba579a86ea:/DependencyInjection/Configuration.php?ds=sidebyside

diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php
index 0265db3..4856910 100644
--- a/DependencyInjection/Configuration.php
+++ b/DependencyInjection/Configuration.php
@@ -13,8 +13,11 @@ namespace Rapsys\PackBundle\DependencyInjection;
 
 use Symfony\Component\Config\Definition\Builder\TreeBuilder;
 use Symfony\Component\Config\Definition\ConfigurationInterface;
+use Symfony\Component\DependencyInjection\Container;
 use Symfony\Component\Process\ExecutableFinder;
 
+use Rapsys\PackBundle\RapsysPackBundle;
+
 /**
  * This is the class that validates and merges configuration from your app/config files.
  *
@@ -28,7 +31,7 @@ class Configuration implements ConfigurationInterface {
 	 */
 	public function getConfigTreeBuilder(): TreeBuilder {
 		//Get TreeBuilder object
-		$treeBuilder = new TreeBuilder('rapsys_pack');
+		$treeBuilder = new TreeBuilder($alias = RapsysPackBundle::getAlias());
 
 		//Get ExecutableFinder object
 		$finder = new ExecutableFinder();
@@ -72,6 +75,10 @@ class Configuration implements ConfigurationInterface {
 						'args' => []
 					]
 				],
+			],
+			'public' => [
+				'path' => dirname(__DIR__).'/Resources/public',
+				'url' => '/bundles/'.str_replace('_', '', $alias)
 			]
 		];
 
@@ -180,6 +187,13 @@ 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()
 				->end()
 			->end();