From 66c85c89a59b0be3b3c43e8a02bf55617801c8f7 Mon Sep 17 00:00:00 2001 From: Artur Turchin Date: Tue, 10 Sep 2019 13:50:54 +0300 Subject: [PATCH 1/5] feat(bundle): register new bundle @ArtoxLabClarcBundle US-30728 --- artox-lab/clarc-bundle/0.0.1/manifest.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 artox-lab/clarc-bundle/0.0.1/manifest.json diff --git a/artox-lab/clarc-bundle/0.0.1/manifest.json b/artox-lab/clarc-bundle/0.0.1/manifest.json new file mode 100644 index 00000000..98c7a1d7 --- /dev/null +++ b/artox-lab/clarc-bundle/0.0.1/manifest.json @@ -0,0 +1,16 @@ +{ + "bundles": { + "ArtoxLab\\Bundle\\ClarcBundle\\ArtoxLabClarcBundle": ["all"] + }, + "copy-from-package": { + "Layers/Entities/": "%SRC_DIR%/Domain/", + "Layers/UseCases/": "%SRC_DIR%/UseCases/", + "Layers/Interfaces/": "%SRC_DIR%/Interfaces/", + "Layers/Infrastructure/": "%SRC_DIR%/Infrastructure/" + }, + "gitignore": [ + ".env", + "/.idea/", + ".DS_Store" + ] +} From 0af3b7b62b106fed833434ebf3c8ef13ea236ab3 Mon Sep 17 00:00:00 2001 From: Artur Turchin Date: Tue, 10 Sep 2019 13:53:59 +0300 Subject: [PATCH 2/5] fix(version): rename version to valid X.X format US-30728 --- artox-lab/clarc-bundle/{0.0.1 => 0.1}/manifest.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename artox-lab/clarc-bundle/{0.0.1 => 0.1}/manifest.json (100%) diff --git a/artox-lab/clarc-bundle/0.0.1/manifest.json b/artox-lab/clarc-bundle/0.1/manifest.json similarity index 100% rename from artox-lab/clarc-bundle/0.0.1/manifest.json rename to artox-lab/clarc-bundle/0.1/manifest.json From 7abbbce119b00751545ec4390cfe9d80ba6e806f Mon Sep 17 00:00:00 2001 From: Artur Turchin Date: Tue, 10 Sep 2019 15:05:41 +0300 Subject: [PATCH 3/5] fix(layers): rename layer Domain to Entities US-30728 --- artox-lab/clarc-bundle/0.1/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artox-lab/clarc-bundle/0.1/manifest.json b/artox-lab/clarc-bundle/0.1/manifest.json index 98c7a1d7..d99f3ff0 100644 --- a/artox-lab/clarc-bundle/0.1/manifest.json +++ b/artox-lab/clarc-bundle/0.1/manifest.json @@ -3,7 +3,7 @@ "ArtoxLab\\Bundle\\ClarcBundle\\ArtoxLabClarcBundle": ["all"] }, "copy-from-package": { - "Layers/Entities/": "%SRC_DIR%/Domain/", + "Layers/Entities/": "%SRC_DIR%/Entities/", "Layers/UseCases/": "%SRC_DIR%/UseCases/", "Layers/Interfaces/": "%SRC_DIR%/Interfaces/", "Layers/Infrastructure/": "%SRC_DIR%/Infrastructure/" From f2d792e865560b6711451e4ca4080d182af761e8 Mon Sep 17 00:00:00 2001 From: Artur Turchin Date: Wed, 11 Sep 2019 18:21:21 +0300 Subject: [PATCH 4/5] feat(config): add configuration for bundle to recipe US-30728 --- .../clarc-bundle/0.1/config/packages/artox_lab_clarc.yaml | 4 ++++ artox-lab/clarc-bundle/0.1/manifest.json | 3 +++ 2 files changed, 7 insertions(+) create mode 100644 artox-lab/clarc-bundle/0.1/config/packages/artox_lab_clarc.yaml diff --git a/artox-lab/clarc-bundle/0.1/config/packages/artox_lab_clarc.yaml b/artox-lab/clarc-bundle/0.1/config/packages/artox_lab_clarc.yaml new file mode 100644 index 00000000..f72086be --- /dev/null +++ b/artox-lab/clarc-bundle/0.1/config/packages/artox_lab_clarc.yaml @@ -0,0 +1,4 @@ +artox_lab_clarc: + api: + serializer: + class: \ArtoxLab\Bundle\ClarcBundle\Core\Interfaces\UI\API\Transformers\Serializers\NullObjectArraySerializer diff --git a/artox-lab/clarc-bundle/0.1/manifest.json b/artox-lab/clarc-bundle/0.1/manifest.json index d99f3ff0..8cb5ca3c 100644 --- a/artox-lab/clarc-bundle/0.1/manifest.json +++ b/artox-lab/clarc-bundle/0.1/manifest.json @@ -2,6 +2,9 @@ "bundles": { "ArtoxLab\\Bundle\\ClarcBundle\\ArtoxLabClarcBundle": ["all"] }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, "copy-from-package": { "Layers/Entities/": "%SRC_DIR%/Entities/", "Layers/UseCases/": "%SRC_DIR%/UseCases/", From 440aa918d856643ec4db226d65f139dd85d74240 Mon Sep 17 00:00:00 2001 From: Artur Turchin Date: Sat, 5 Oct 2019 15:15:02 +0300 Subject: [PATCH 5/5] fix(remove gitignore from recipes (required by Nyholm in request)): remove gitignore from recipe Nyholm requested to removing gitignore from recipe review --- artox-lab/clarc-bundle/0.1/manifest.json | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/artox-lab/clarc-bundle/0.1/manifest.json b/artox-lab/clarc-bundle/0.1/manifest.json index 8cb5ca3c..bcc2701b 100644 --- a/artox-lab/clarc-bundle/0.1/manifest.json +++ b/artox-lab/clarc-bundle/0.1/manifest.json @@ -10,10 +10,5 @@ "Layers/UseCases/": "%SRC_DIR%/UseCases/", "Layers/Interfaces/": "%SRC_DIR%/Interfaces/", "Layers/Infrastructure/": "%SRC_DIR%/Infrastructure/" - }, - "gitignore": [ - ".env", - "/.idea/", - ".DS_Store" - ] + } }