From: Raphaƫl Gertz <git@rapsys.eu>
Date: Wed, 27 Nov 2019 03:39:04 +0000 (+0100)
Subject: Set each file to copy to avoid unwanted globing
X-Git-Url: https://git.rapsys.eu/recipe/commitdiff_plain/a25b7ab54eefb73674743fa179832674f8dd7015

Set each file to copy to avoid unwanted globing
Append dev classes in config/bundle.php
---

diff --git a/rapsys/airbundle/master/manifest.json b/rapsys/airbundle/master/manifest.json
index fb769c7..476a45d 100644
--- a/rapsys/airbundle/master/manifest.json
+++ b/rapsys/airbundle/master/manifest.json
@@ -1,11 +1,17 @@
 {
 	"bundles": {
-		"Rapsys\\AirBundle\\RapsysAirBundle": ["all"]
+		"Rapsys\\AirBundle\\RapsysAirBundle": ["all"],
+		"Doctrine\\Bundle\\FixturesBundle": ["dev"],
+		"Symfony\\Component\\BrowserKit": ["dev"],
+		"Symfony\\Bundle\\MakerBundle": ["dev"],
+		"Symfony\\Bridge\\PhpUnit": ["dev"],
+		"Symfony\\Bundle\\WebProfilerBundle": ["dev"]
 	},
 	"container": {
 		"locale": "en"
 	},
 	"copy-from-package": {
-		"Resources/config/": "%CONFIG_DIR%/"
+		"Resources/config/packages/rapsys_air.yaml": "%CONFIG_DIR%/packages/rapsys_air.yaml",
+		"Resources/config/routes/rapsys_air.yaml": "%CONFIG_DIR%/routes/rapsys_air.yaml"
 	}
 }
diff --git a/rapsys/packbundle/master/manifest.json b/rapsys/packbundle/master/manifest.json
index 3ed9b00..c9c125d 100644
--- a/rapsys/packbundle/master/manifest.json
+++ b/rapsys/packbundle/master/manifest.json
@@ -3,6 +3,6 @@
 		"Rapsys\\PackBundle\\RapsysPackBundle": ["all"]
 	},
 	"copy-from-package": {
-		"Resources/config/": "%CONFIG_DIR%/"
+		"Resources/config/packages/rapsys_pack.yaml": "%CONFIG_DIR%/packages/rapsys_pack.yaml"
 	}
 }
diff --git a/rapsys/userbundle/master/manifest.json b/rapsys/userbundle/master/manifest.json
index 7f488e8..71f19c9 100644
--- a/rapsys/userbundle/master/manifest.json
+++ b/rapsys/userbundle/master/manifest.json
@@ -3,6 +3,7 @@
 		"Rapsys\\UserBundle\\RapsysUserBundle": ["all"]
 	},
 	"copy-from-package": {
-		"Resources/config/": "%CONFIG_DIR%/"
+		"Resources/config/packages/rapsys_user.yaml": "%CONFIG_DIR%/packages/rapsys_user.yaml",
+		"Resources/config/routes/rapsys_user.yaml": "%CONFIG_DIR%/routes/rapsys_user.yaml"
 	}
 }