Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
codevenom_fakturownia:
base_url: '%env(FAKTUROWNIA_BASE_URL)%'
api_token: '%env(FAKTUROWNIA_API_TOKEN)%'
seller_name: '%env(default::FAKTUROWNIA_SELLER_NAME)%'
seller_tax_id: '%env(default::FAKTUROWNIA_SELLER_TAX_ID)%'
downloads_path: '%kernel.project_dir%/var/fakturownia'
timeout: 10

17 changes: 17 additions & 0 deletions codevenom/fakturownia-bundle/0.1/config/packages/mcp.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
mcp:
app: 'codevenom-fakturownia'
version: '1.0.0'
instructions: 'MCP server exposing Fakturownia tools.'
client_transports:
http: true
http:
path: '/_mcp'
session:
store: 'file'
directory: '%kernel.cache_dir%/mcp-sessions'
ttl: 3600
discovery:
scan_dirs:
- '%kernel.project_dir%/src'
- '%kernel.project_dir%/vendor/codevenom/fakturownia-bundle'

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
mcp:
resource: .
type: mcp

15 changes: 15 additions & 0 deletions codevenom/fakturownia-bundle/0.1/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"bundles": {
"Codevenom\\FakturowniaBundle\\CodevenomFakturowniaBundle": ["all"]

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it possible to skip the QA check that installs the recipe into a symfony/skeleton:^6 project?

This bundle currently does not support Symfony 6 because it depends on symfony/mcp-bundle, which is not compatible with Symfony 6. The bundle is intended to support Symfony 7+ only.

I can keep the bundle constraints explicit in composer.json, for example requiring Symfony ^7.0 || ^8.0, but the current QA matrix still tries to install it into a Symfony 6 skeleton and fails during Composer dependency resolution.
Here is the composer.json - https://github.com/codevenom-co/fakturownia-bundle/blob/023d75cc20bebab768d0fec5e0c86a33aacc53e3/composer.json#L8

Is there a recommended way for Symfony 7+ only bundles/recipes to handle this in recipes-contrib?

@diimpp diimpp May 5, 2026

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi,

QA checks don't need to fully pass in order for PR to be merged. If package doesn't support SF6 -- that's totally fine.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks

},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"FAKTUROWNIA_BASE_URL": "https://app.fakturownia.pl",
"FAKTUROWNIA_API_TOKEN": "",
"FAKTUROWNIA_SELLER_NAME": "",
"FAKTUROWNIA_SELLER_TAX_ID": ""
}
}

Loading