From 0d9b80e1b06beff2aa5afa3129d1a9a2c4ada66b Mon Sep 17 00:00:00 2001 From: Alexander Dimitrov Date: Thu, 11 Jun 2026 09:33:59 +0300 Subject: [PATCH 1/4] [netbull/core-bundle] Add recipe --- .../7.0/config/packages/netbull_core.yaml | 30 +++++++++++++++++++ netbull/core-bundle/7.0/manifest.json | 8 +++++ netbull/core-bundle/7.0/post-install.txt | 16 ++++++++++ 3 files changed, 54 insertions(+) create mode 100644 netbull/core-bundle/7.0/config/packages/netbull_core.yaml create mode 100644 netbull/core-bundle/7.0/manifest.json create mode 100644 netbull/core-bundle/7.0/post-install.txt diff --git a/netbull/core-bundle/7.0/config/packages/netbull_core.yaml b/netbull/core-bundle/7.0/config/packages/netbull_core.yaml new file mode 100644 index 000000000..6a4de9c9f --- /dev/null +++ b/netbull/core-bundle/7.0/config/packages/netbull_core.yaml @@ -0,0 +1,30 @@ +netbull_core: + # Everything below is optional — the bundle works with an empty config. + + # Where "bin/console netbull:core:js-routing" dumps the routes for the frontend, + # relative to the project directory. Only routes marked with + # "options: { expose: true }" are exported. + # js_routes_path: 'assets/js/router.js' + + # Flavor of the generated router file: "js" or "es6". + # js_type: 'es6' + + # Defaults applied to the AjaxType / Select2Type form types (select2-based widgets). + # form_types: + # ajax: + # minimum_input_length: 1 + # page_limit: 10 + # allow_clear: false + # delay: 250 + # language: 'en' + # cache: true + + # CSS classes / icons used by the pagination_sortable() Twig function. + # paginator: + # sortable: + # icons: + # none: 'fa fa-sort' + # asc: 'fa fa-sort-up' + # desc: 'fa fa-sort-down' + # active_class: 'text-success' + # not_active_class: 'text-primary' diff --git a/netbull/core-bundle/7.0/manifest.json b/netbull/core-bundle/7.0/manifest.json new file mode 100644 index 000000000..12b7aad5a --- /dev/null +++ b/netbull/core-bundle/7.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "NetBull\\CoreBundle\\NetBullCoreBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/netbull/core-bundle/7.0/post-install.txt b/netbull/core-bundle/7.0/post-install.txt new file mode 100644 index 000000000..bfd88c5b8 --- /dev/null +++ b/netbull/core-bundle/7.0/post-install.txt @@ -0,0 +1,16 @@ + + NetBull CoreBundle + + + * A starter configuration was created at config/packages/netbull_core.yaml. + All options are optional — uncomment what you need. + + * Doctrine column types (spatial, phone number, range) must be registered in + doctrine.dbal.types before use; the DQL function GREATEST under + doctrine.orm.dql.numeric_functions. See the README for the snippet. + + * To export routes to the frontend, mark them with options: { expose: true }, + set netbull_core.js_routes_path and run + bin/console netbull:core:js-routing. + + Reference: https://packagist.org/packages/netbull/core-bundle From 486a97b83c510027c1e1462da3bb3e541ace096a Mon Sep 17 00:00:00 2001 From: Alexander Dimitrov Date: Thu, 11 Jun 2026 11:41:25 +0300 Subject: [PATCH 2/4] fix: added defaults --- .../7.0/7.0/config/packages/netbull_core.yaml | 28 +++++++++++++++++++ netbull/core-bundle/7.0/7.0/manifest.json | 8 ++++++ netbull/core-bundle/7.0/7.0/post-install.txt | 16 +++++++++++ 3 files changed, 52 insertions(+) create mode 100644 netbull/core-bundle/7.0/7.0/config/packages/netbull_core.yaml create mode 100644 netbull/core-bundle/7.0/7.0/manifest.json create mode 100644 netbull/core-bundle/7.0/7.0/post-install.txt diff --git a/netbull/core-bundle/7.0/7.0/config/packages/netbull_core.yaml b/netbull/core-bundle/7.0/7.0/config/packages/netbull_core.yaml new file mode 100644 index 000000000..67e2e2129 --- /dev/null +++ b/netbull/core-bundle/7.0/7.0/config/packages/netbull_core.yaml @@ -0,0 +1,28 @@ +netbull_core: + # Where "bin/console netbull:core:js-routing" dumps the routes for the frontend, + # relative to the project directory. Only routes marked with + # "options: { expose: true }" are exported. + # js_routes_path: 'assets/js/router.js' + + # Flavor of the generated router file: "js" or "es6". + # js_type: 'es6' + + # Defaults applied to the AjaxType / Select2Type form types (select2-based widgets). + form_types: + ajax: + minimum_input_length: 1 + page_limit: 10 + allow_clear: false + delay: 250 + language: 'en' + cache: true + + # CSS classes / icons used by the pagination_sortable() Twig function. + paginator: + sortable: + icons: + none: 'fa fa-sort' + asc: 'fa fa-sort-up' + desc: 'fa fa-sort-down' + active_class: 'text-success' + not_active_class: 'text-primary' diff --git a/netbull/core-bundle/7.0/7.0/manifest.json b/netbull/core-bundle/7.0/7.0/manifest.json new file mode 100644 index 000000000..12b7aad5a --- /dev/null +++ b/netbull/core-bundle/7.0/7.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "NetBull\\CoreBundle\\NetBullCoreBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/netbull/core-bundle/7.0/7.0/post-install.txt b/netbull/core-bundle/7.0/7.0/post-install.txt new file mode 100644 index 000000000..bfd88c5b8 --- /dev/null +++ b/netbull/core-bundle/7.0/7.0/post-install.txt @@ -0,0 +1,16 @@ + + NetBull CoreBundle + + + * A starter configuration was created at config/packages/netbull_core.yaml. + All options are optional — uncomment what you need. + + * Doctrine column types (spatial, phone number, range) must be registered in + doctrine.dbal.types before use; the DQL function GREATEST under + doctrine.orm.dql.numeric_functions. See the README for the snippet. + + * To export routes to the frontend, mark them with options: { expose: true }, + set netbull_core.js_routes_path and run + bin/console netbull:core:js-routing. + + Reference: https://packagist.org/packages/netbull/core-bundle From cae4fa11277b6a667b6f9994273830c97e804023 Mon Sep 17 00:00:00 2001 From: Alexander Dimitrov Date: Thu, 11 Jun 2026 11:44:57 +0300 Subject: [PATCH 3/4] fix: added defaults --- .../7.0/config/packages/netbull_core.yaml | 35 +++++++++---------- 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/netbull/core-bundle/7.0/config/packages/netbull_core.yaml b/netbull/core-bundle/7.0/config/packages/netbull_core.yaml index 6a4de9c9f..50e15f4c8 100644 --- a/netbull/core-bundle/7.0/config/packages/netbull_core.yaml +++ b/netbull/core-bundle/7.0/config/packages/netbull_core.yaml @@ -1,6 +1,4 @@ netbull_core: - # Everything below is optional — the bundle works with an empty config. - # Where "bin/console netbull:core:js-routing" dumps the routes for the frontend, # relative to the project directory. Only routes marked with # "options: { expose: true }" are exported. @@ -10,21 +8,22 @@ netbull_core: # js_type: 'es6' # Defaults applied to the AjaxType / Select2Type form types (select2-based widgets). - # form_types: - # ajax: - # minimum_input_length: 1 - # page_limit: 10 - # allow_clear: false - # delay: 250 - # language: 'en' - # cache: true + form_types: + ajax: + minimum_input_length: 1 + page_limit: 10 + allow_clear: false + delay: 250 + language: 'en' + cache: true # CSS classes / icons used by the pagination_sortable() Twig function. - # paginator: - # sortable: - # icons: - # none: 'fa fa-sort' - # asc: 'fa fa-sort-up' - # desc: 'fa fa-sort-down' - # active_class: 'text-success' - # not_active_class: 'text-primary' + paginator: + sortable: + icons: + none: 'fa fa-sort' + asc: 'fa fa-sort-up' + desc: 'fa fa-sort-down' + active_class: 'text-success' + not_active_class: 'text-primary' + From 71ccd6d6468e319ba248a9f007b7e872d1b979d2 Mon Sep 17 00:00:00 2001 From: Alexander Dimitrov Date: Thu, 11 Jun 2026 11:49:56 +0300 Subject: [PATCH 4/4] fix: added defaults --- .../7.0/7.0/config/packages/netbull_core.yaml | 28 ------------------- netbull/core-bundle/7.0/7.0/manifest.json | 8 ------ netbull/core-bundle/7.0/7.0/post-install.txt | 16 ----------- .../7.0/config/packages/netbull_core.yaml | 1 - 4 files changed, 53 deletions(-) delete mode 100644 netbull/core-bundle/7.0/7.0/config/packages/netbull_core.yaml delete mode 100644 netbull/core-bundle/7.0/7.0/manifest.json delete mode 100644 netbull/core-bundle/7.0/7.0/post-install.txt diff --git a/netbull/core-bundle/7.0/7.0/config/packages/netbull_core.yaml b/netbull/core-bundle/7.0/7.0/config/packages/netbull_core.yaml deleted file mode 100644 index 67e2e2129..000000000 --- a/netbull/core-bundle/7.0/7.0/config/packages/netbull_core.yaml +++ /dev/null @@ -1,28 +0,0 @@ -netbull_core: - # Where "bin/console netbull:core:js-routing" dumps the routes for the frontend, - # relative to the project directory. Only routes marked with - # "options: { expose: true }" are exported. - # js_routes_path: 'assets/js/router.js' - - # Flavor of the generated router file: "js" or "es6". - # js_type: 'es6' - - # Defaults applied to the AjaxType / Select2Type form types (select2-based widgets). - form_types: - ajax: - minimum_input_length: 1 - page_limit: 10 - allow_clear: false - delay: 250 - language: 'en' - cache: true - - # CSS classes / icons used by the pagination_sortable() Twig function. - paginator: - sortable: - icons: - none: 'fa fa-sort' - asc: 'fa fa-sort-up' - desc: 'fa fa-sort-down' - active_class: 'text-success' - not_active_class: 'text-primary' diff --git a/netbull/core-bundle/7.0/7.0/manifest.json b/netbull/core-bundle/7.0/7.0/manifest.json deleted file mode 100644 index 12b7aad5a..000000000 --- a/netbull/core-bundle/7.0/7.0/manifest.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "bundles": { - "NetBull\\CoreBundle\\NetBullCoreBundle": ["all"] - }, - "copy-from-recipe": { - "config/": "%CONFIG_DIR%/" - } -} diff --git a/netbull/core-bundle/7.0/7.0/post-install.txt b/netbull/core-bundle/7.0/7.0/post-install.txt deleted file mode 100644 index bfd88c5b8..000000000 --- a/netbull/core-bundle/7.0/7.0/post-install.txt +++ /dev/null @@ -1,16 +0,0 @@ - - NetBull CoreBundle - - - * A starter configuration was created at config/packages/netbull_core.yaml. - All options are optional — uncomment what you need. - - * Doctrine column types (spatial, phone number, range) must be registered in - doctrine.dbal.types before use; the DQL function GREATEST under - doctrine.orm.dql.numeric_functions. See the README for the snippet. - - * To export routes to the frontend, mark them with options: { expose: true }, - set netbull_core.js_routes_path and run - bin/console netbull:core:js-routing. - - Reference: https://packagist.org/packages/netbull/core-bundle diff --git a/netbull/core-bundle/7.0/config/packages/netbull_core.yaml b/netbull/core-bundle/7.0/config/packages/netbull_core.yaml index 50e15f4c8..67e2e2129 100644 --- a/netbull/core-bundle/7.0/config/packages/netbull_core.yaml +++ b/netbull/core-bundle/7.0/config/packages/netbull_core.yaml @@ -26,4 +26,3 @@ netbull_core: desc: 'fa fa-sort-down' active_class: 'text-success' not_active_class: 'text-primary' -