Compare commits

..
Author SHA1 Message Date
github-action[bot]andgithub-action[bot] 5d7e4610f4 Create Flex endpoint 2026-08-13 01:53:37 +00:00
3 changed files with 67 additions and 17 deletions
+5 -4
View File
@@ -1,8 +1,9 @@
{ {
"aliases": [], "aliases": [],
"recipes": { "recipes": {
"ad3n/jwt-refresh-token-bundle": [ "siganushka/region-bundle": [
"1.0" "1.2",
"1.3"
] ]
}, },
"recipe-conflicts": [], "recipe-conflicts": [],
@@ -12,9 +13,9 @@
"_links": { "_links": {
"repository": "github.com/symfony/recipes-contrib", "repository": "github.com/symfony/recipes-contrib",
"origin_template": "{package}:{version}@github.com/symfony/recipes-contrib:main", "origin_template": "{package}:{version}@github.com/symfony/recipes-contrib:main",
"recipe_template": "https://raw.githubusercontent.com/symfony/recipes-contrib/flex/pull-1751/{package_dotted}.{version}.json", "recipe_template": "https://raw.githubusercontent.com/symfony/recipes-contrib/flex/pull-2025/{package_dotted}.{version}.json",
"recipe_template_relative": "{package_dotted}.{version}.json", "recipe_template_relative": "{package_dotted}.{version}.json",
"archived_recipes_template": "https://raw.githubusercontent.com/symfony/recipes-contrib/flex/pull-1751/archived/{package_dotted}/{ref}.json", "archived_recipes_template": "https://raw.githubusercontent.com/symfony/recipes-contrib/flex/pull-2025/archived/{package_dotted}/{ref}.json",
"archived_recipes_template_relative": "archived/{package_dotted}/{ref}.json" "archived_recipes_template_relative": "archived/{package_dotted}/{ref}.json"
} }
} }
@@ -1,9 +1,9 @@
{ {
"manifests": { "manifests": {
"ad3n/jwt-refresh-token-bundle": { "siganushka/region-bundle": {
"manifest": { "manifest": {
"bundles": { "bundles": {
"Gesdinet\\JWTRefreshTokenBundle\\GesdinetJWTRefreshTokenBundle": [ "Siganushka\\RegionBundle\\SiganushkaRegionBundle": [
"all" "all"
] ]
}, },
@@ -13,34 +13,36 @@
} }
}, },
"files": { "files": {
"config/packages/gesdinet_jwt_refresh_token.yaml": { "config/packages/siganushka_region.yaml": {
"contents": [ "contents": [
"gesdinet_jwt_refresh_token:", "siganushka_region:",
" refresh_token_class: App\\Entity\\RefreshToken", " region_class: App\\Entity\\Region",
"" ""
], ],
"executable": false "executable": false
}, },
"config/routes/gesdinet_jwt_refresh_token.yaml": { "config/routes/siganushka_region.yaml": {
"contents": [ "contents": [
"gesdinet_jwt_refresh_token:", "siganushka_region:",
" path: /api/token/refresh", " resource: \"@SiganushkaRegionBundle/config/routes.php\"",
" stateless: true",
"" ""
], ],
"executable": false "executable": false
}, },
"src/Entity/RefreshToken.php": { "src/Entity/Region.php": {
"contents": [ "contents": [
"<?php", "<?php",
"", "",
"declare(strict_types=1);",
"",
"namespace App\\Entity;", "namespace App\\Entity;",
"", "",
"use Doctrine\\ORM\\Mapping as ORM;", "use Doctrine\\ORM\\Mapping as ORM;",
"use Gesdinet\\JWTRefreshTokenBundle\\Entity\\RefreshToken as BaseRefreshToken;", "use Siganushka\\RegionBundle\\Entity\\Region as BaseRegion;",
"", "",
"#[ORM\\Entity]", "#[ORM\\Entity]",
"#[ORM\\Table(name: 'refresh_tokens')]", "class Region extends BaseRegion",
"class RefreshToken extends BaseRefreshToken",
"{", "{",
"}", "}",
"" ""
@@ -48,7 +50,7 @@
"executable": false "executable": false
} }
}, },
"ref": "2390b4ed5c195e0b3f6dea45221f3b7c0af523a0" "ref": "9675c53d5e7b8861a6e732695260b9752e195a16"
} }
} }
} }
+47
View File
@@ -0,0 +1,47 @@
{
"manifests": {
"siganushka/region-bundle": {
"manifest": {
"bundles": {
"Siganushka\\RegionBundle\\SiganushkaRegionBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/",
"src/": "%SRC_DIR%/"
}
},
"files": {
"config/packages/siganushka_region.yaml": {
"contents": [
"siganushka_region:",
" region_class: App\\Entity\\Region",
""
],
"executable": false
},
"src/Entity/Region.php": {
"contents": [
"<?php",
"",
"declare(strict_types=1);",
"",
"namespace App\\Entity;",
"",
"use Doctrine\\ORM\\Mapping as ORM;",
"use Siganushka\\RegionBundle\\Entity\\AbstractRegion;",
"",
"#[ORM\\Entity]",
"class Region extends AbstractRegion",
"{",
"}",
""
],
"executable": false
}
},
"ref": "0c4ac10cc4ec60a49dfbbe235145b16c8727f26c"
}
}
}