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