mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-03-24 00:32:17 +01:00
Sylius Recipes Enhancements (#1724)
* Add sylius/paypal-plugin:1.7 recipe
* Revert "Remove sylius/refund-plugin:0.4 recipe"
This reverts commit 4870325478.
* Correct sylius/invoicing-plugin:1.0 recipe
* Correct sylius/paypal 2.0gs recipe
* Correct sylius/refund-plugin:2.0 recipe
* Remove sylius/refund-plugin:2.0 recipe
This commit is contained in:
@@ -1,9 +1,2 @@
|
||||
sylius_invoicing_admin:
|
||||
resource: "@SyliusInvoicingPlugin/config/admin_routes.yaml"
|
||||
prefix: /admin
|
||||
|
||||
sylius_invoicing_shop:
|
||||
resource: "@SyliusInvoicingPlugin/config/shop_routes.yaml"
|
||||
prefix: /{_locale}
|
||||
requirements:
|
||||
_locale: ^[a-z]{2}(?:_[A-Z]{2})?$
|
||||
sylius_invoicing:
|
||||
resource: "@SyliusInvoicingPlugin/config/routes.yaml"
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
imports:
|
||||
- { resource: "@SyliusPayPalPlugin/Resources/config/config.yaml" }
|
||||
12
sylius/paypal-plugin/1.7/config/routes/sylius_paypal.yaml
Normal file
12
sylius/paypal-plugin/1.7/config/routes/sylius_paypal.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
sylius_paypal_admin:
|
||||
resource: "@SyliusPayPalPlugin/Resources/config/admin_routing.yml"
|
||||
prefix: /%sylius_admin.path_name%
|
||||
|
||||
sylius_paypal_shop:
|
||||
resource: "@SyliusPayPalPlugin/Resources/config/shop_routing.yaml"
|
||||
prefix: /{_locale}
|
||||
requirements:
|
||||
_locale: ^[A-Za-z]{2,4}(_([A-Za-z]{4}|[0-9]{3}))?(_([A-Za-z]{2}|[0-9]{3}))?$
|
||||
|
||||
sylius_paypal_webhook:
|
||||
resource: "@SyliusPayPalPlugin/Resources/config/webhook_routing.yaml"
|
||||
8
sylius/paypal-plugin/1.7/manifest.json
Normal file
8
sylius/paypal-plugin/1.7/manifest.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"bundles": {
|
||||
"Sylius\\PayPalPlugin\\SyliusPayPalPlugin": ["all"]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
}
|
||||
}
|
||||
@@ -1,14 +1,2 @@
|
||||
imports:
|
||||
- { resource: "@SyliusInvoicingPlugin/config/config.yaml" }
|
||||
|
||||
fos_rest:
|
||||
exception: true
|
||||
view:
|
||||
formats:
|
||||
json: true
|
||||
xml: true
|
||||
empty_content: 204
|
||||
format_listener:
|
||||
rules:
|
||||
- { path: '^/api/.*', priorities: ['json', 'xml'], fallback_format: json, prefer_extension: true }
|
||||
- { path: '^/', stop: true }
|
||||
- { resource: "@SyliusPayPalPlugin/config/config.yaml" }
|
||||
|
||||
@@ -1,12 +1,2 @@
|
||||
sylius_paypal_admin:
|
||||
resource: "@SyliusPayPalPlugin/config/admin_routes.yaml"
|
||||
prefix: /admin
|
||||
|
||||
sylius_paypal_shop:
|
||||
resource: "@SyliusPayPalPlugin/config/shop_routes.yaml"
|
||||
prefix: /{_locale}
|
||||
requirements:
|
||||
_locale: ^[a-z]{2}(?:_[A-Z]{2})?$
|
||||
|
||||
sylius_paypal_plugin_webhook_refund_order:
|
||||
resource: "@SyliusPayPalPlugin/config/webhook_routes.yaml"
|
||||
sylius_paypal:
|
||||
resource: "@SyliusPayPalPlugin/config/routes.yaml"
|
||||
|
||||
@@ -1,8 +1,17 @@
|
||||
{
|
||||
"bundles": {
|
||||
"Sylius\\InvoicingPlugin\\SyliusInvoicingPlugin": ["all"]
|
||||
"Sylius\\PayPalPlugin\\SyliusPayPalPlugin": ["all"]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
}
|
||||
},
|
||||
"add-lines": [
|
||||
{
|
||||
"file": "config/packages/fos_rest.yaml",
|
||||
"position": "after_target",
|
||||
"warn_if_missing": true,
|
||||
"target": "fos_rest:",
|
||||
"content": " ###> sylius/paypal-plugin ###\n exception: true\n view:\n formats:\n json: true\n xml: true\n empty_content: 204\n format_listener:\n rules:\n - { path: '^/api/.*', priorities: ['json', 'xml'], fallback_format: json, prefer_extension: true }\n - { path: '^/', stop: true }\n ###< sylius/paypal-plugin ###\n"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
imports:
|
||||
- { resource: "@SyliusRefundPlugin/Resources/config/app/config.yml" }
|
||||
@@ -0,0 +1,2 @@
|
||||
sylius_refund:
|
||||
resource: "@SyliusRefundPlugin/Resources/config/routing.yml"
|
||||
@@ -1,2 +0,0 @@
|
||||
imports:
|
||||
- { resource: "@SyliusRefundPlugin/config/config.yaml" }
|
||||
@@ -1,9 +0,0 @@
|
||||
sylius_refund_admin:
|
||||
resource: "@SyliusRefundPlugin/config/admin_routes.yaml"
|
||||
prefix: '/%sylius_admin.path_name%'
|
||||
|
||||
sylius_refund_shop:
|
||||
resource: "@SyliusRefundPlugin/config/shop_routes.yaml"
|
||||
prefix: /{_locale}
|
||||
requirements:
|
||||
_locale: ^[a-z]{2}(?:_[A-Z]{2})?$
|
||||
Reference in New Issue
Block a user