mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-15 09:06:27 +03:00
Update Flex endpoint
This commit is contained in:
@@ -461,6 +461,7 @@ Additional recipes can be found on the [Main Recipes Repository](https://github.
|
||||
| [sensiolabs/connect-bundle](https://packagist.org/packages/sensiolabs/connect-bundle) | [4.0](sensiolabs/connect-bundle/4.0) |
|
||||
| [sentry/sentry-symfony](https://packagist.org/packages/sentry/sentry-symfony) | [4.6](sentry/sentry-symfony/4.6) |
|
||||
| [sg/datatablesbundle](https://packagist.org/packages/sg/datatablesbundle) | [1.0](sg/datatablesbundle/1.0) |
|
||||
| [shopware/app-bundle](https://packagist.org/packages/shopware/app-bundle) | [1.0](shopware/app-bundle/1.0) |
|
||||
| [siganushka/generic-bundle](https://packagist.org/packages/siganushka/generic-bundle) | [0.3](siganushka/generic-bundle/0.3) |
|
||||
| [siganushka/region-bundle](https://packagist.org/packages/siganushka/region-bundle) | [0.1](siganushka/region-bundle/0.1) |
|
||||
| [silasjoisten/sonata-multiupload-bundle](https://packagist.org/packages/silasjoisten/sonata-multiupload-bundle) | [3.4](silasjoisten/sonata-multiupload-bundle/3.4) |
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
{
|
||||
"manifests": {
|
||||
"shopware/app-bundle": {
|
||||
"manifest": {
|
||||
"bundles": {
|
||||
"Shopware\\AppBundle\\ShopwareAppBundle": [
|
||||
"all"
|
||||
]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/",
|
||||
"src/": "%SRC_DIR%/"
|
||||
},
|
||||
"env": {
|
||||
"SHOPWARE_APP_NAME": "TestApp",
|
||||
"SHOPWARE_APP_SECRET": "MySecret"
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/shopware_app.yaml": {
|
||||
"contents": [
|
||||
"shopware_app:",
|
||||
" shop_class: App\\Entity\\Shop",
|
||||
" name: '%env(SHOPWARE_APP_NAME)%'",
|
||||
" secret: '%env(SHOPWARE_APP_SECRET)%'",
|
||||
"",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/shopware_app.yaml": {
|
||||
"contents": [
|
||||
"shopware_app_lifecycle:",
|
||||
" resource: '@ShopwareAppBundle/Resources/config/routing/lifecycle.xml'",
|
||||
" prefix: /app",
|
||||
"",
|
||||
"shopware_app_webhook:",
|
||||
" resource: '@ShopwareAppBundle/Resources/config/routing/webhook.xml'",
|
||||
" prefix: /app",
|
||||
"",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/Shop.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"declare(strict_types=1);",
|
||||
"",
|
||||
"namespace App\\Entity;",
|
||||
"",
|
||||
"use Doctrine\\ORM\\Mapping\\Entity;",
|
||||
"use Shopware\\AppBundle\\Entity\\AbstractShop;",
|
||||
"",
|
||||
"#[Entity]",
|
||||
"class Shop extends AbstractShop",
|
||||
"{",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "1e0d5c7858030b651accf425573b9284e427f162"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1453,6 +1453,9 @@
|
||||
"sg/datatablesbundle": [
|
||||
"1.0"
|
||||
],
|
||||
"shopware/app-bundle": [
|
||||
"1.0"
|
||||
],
|
||||
"siganushka/generic-bundle": [
|
||||
"0.3"
|
||||
],
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
{
|
||||
"manifests": {
|
||||
"shopware/app-bundle": {
|
||||
"manifest": {
|
||||
"bundles": {
|
||||
"Shopware\\AppBundle\\ShopwareAppBundle": [
|
||||
"all"
|
||||
]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/",
|
||||
"src/": "%SRC_DIR%/"
|
||||
},
|
||||
"env": {
|
||||
"SHOPWARE_APP_NAME": "TestApp",
|
||||
"SHOPWARE_APP_SECRET": "MySecret"
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/shopware_app.yaml": {
|
||||
"contents": [
|
||||
"shopware_app:",
|
||||
" shop_class: App\\Entity\\Shop",
|
||||
" name: '%env(SHOPWARE_APP_NAME)%'",
|
||||
" secret: '%env(SHOPWARE_APP_SECRET)%'",
|
||||
"",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/shopware_app.yaml": {
|
||||
"contents": [
|
||||
"shopware_app_lifecycle:",
|
||||
" resource: '@ShopwareAppBundle/Resources/config/routing/lifecycle.xml'",
|
||||
" prefix: /app",
|
||||
"",
|
||||
"shopware_app_webhook:",
|
||||
" resource: '@ShopwareAppBundle/Resources/config/routing/webhook.xml'",
|
||||
" prefix: /app",
|
||||
"",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/Shop.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"declare(strict_types=1);",
|
||||
"",
|
||||
"namespace App\\Entity;",
|
||||
"",
|
||||
"use Doctrine\\ORM\\Mapping\\Entity;",
|
||||
"use Shopware\\AppBundle\\Entity\\AbstractShop;",
|
||||
"",
|
||||
"#[Entity]",
|
||||
"class Shop extends AbstractShop",
|
||||
"{",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "1e0d5c7858030b651accf425573b9284e427f162"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user