Add siganushka/region-bundle v1.3 (#2025)

This commit is contained in:
Siganushka
2026-08-14 11:32:22 +04:00
committed by GitHub
parent e7a25f741b
commit 50aef8d3a6
3 changed files with 24 additions and 0 deletions
@@ -0,0 +1,2 @@
siganushka_region:
region_class: App\Entity\Region
@@ -0,0 +1,9 @@
{
"bundles": {
"Siganushka\\RegionBundle\\SiganushkaRegionBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/",
"src/": "%SRC_DIR%/"
}
}
@@ -0,0 +1,13 @@
<?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
{
}