Compare commits

..
Author SHA1 Message Date
github-action[bot]andgithub-action[bot] 69b521e938 Create Flex endpoint 2026-08-05 06:35:19 +00:00
2 changed files with 19 additions and 17 deletions
+4 -4
View File
@@ -1,8 +1,8 @@
{ {
"aliases": [], "aliases": [],
"recipes": { "recipes": {
"ad3n/jwt-refresh-token-bundle": [ "siganushka/region-bundle": [
"1.0" "1.2"
] ]
}, },
"recipe-conflicts": [], "recipe-conflicts": [],
@@ -12,9 +12,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-2019/{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-2019/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"
} }
} }
} }