From aa7755c9279968fb57aea13451ae8f8668d5de93 Mon Sep 17 00:00:00 2001 From: Callistus Nkamuo Date: Sun, 13 Apr 2025 15:37:20 +0100 Subject: [PATCH] Initialized the nkamuo/barcode-bundle project --- nkamuo/barcode-bundle/1.0-dev/README.md | 12 ++++++++++++ nkamuo/barcode-bundle/1.0-dev/config/bundle.php | 5 +++++ .../1.0-dev/config/packages/barcode.yaml | 3 +++ nkamuo/barcode-bundle/1.0-dev/manufest.json | 10 ++++++++++ 4 files changed, 30 insertions(+) create mode 100644 nkamuo/barcode-bundle/1.0-dev/README.md create mode 100644 nkamuo/barcode-bundle/1.0-dev/config/bundle.php create mode 100644 nkamuo/barcode-bundle/1.0-dev/config/packages/barcode.yaml create mode 100644 nkamuo/barcode-bundle/1.0-dev/manufest.json diff --git a/nkamuo/barcode-bundle/1.0-dev/README.md b/nkamuo/barcode-bundle/1.0-dev/README.md new file mode 100644 index 000000000..27271ed11 --- /dev/null +++ b/nkamuo/barcode-bundle/1.0-dev/README.md @@ -0,0 +1,12 @@ +# Barcode Bundle Recipe + +This recipe installs the configuration for the Barcode Bundle. + +## Installed Files + +The following files are installed: + +- `config/packages/barcode.yaml`: Configuration for your bundle. +- `config/bundles.php`: Auto-registers the `Nkamuo\Barcode\BarcodeBundle`. + +You can customize the configuration in `barcode.yaml`. \ No newline at end of file diff --git a/nkamuo/barcode-bundle/1.0-dev/config/bundle.php b/nkamuo/barcode-bundle/1.0-dev/config/bundle.php new file mode 100644 index 000000000..3f5036849 --- /dev/null +++ b/nkamuo/barcode-bundle/1.0-dev/config/bundle.php @@ -0,0 +1,5 @@ + ['all' => true], +]; \ No newline at end of file diff --git a/nkamuo/barcode-bundle/1.0-dev/config/packages/barcode.yaml b/nkamuo/barcode-bundle/1.0-dev/config/packages/barcode.yaml new file mode 100644 index 000000000..ff2a9cfbf --- /dev/null +++ b/nkamuo/barcode-bundle/1.0-dev/config/packages/barcode.yaml @@ -0,0 +1,3 @@ +barcode: + default_storage: 'in_memory' + enabled_formatters: ['qrcode', 'barcode'] \ No newline at end of file diff --git a/nkamuo/barcode-bundle/1.0-dev/manufest.json b/nkamuo/barcode-bundle/1.0-dev/manufest.json new file mode 100644 index 000000000..41880a71f --- /dev/null +++ b/nkamuo/barcode-bundle/1.0-dev/manufest.json @@ -0,0 +1,10 @@ +{ + "manifest": { + "bundles": { + "Nkamuo\\Barcode\\BarcodeBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } + } +} \ No newline at end of file