{"id":14970954,"url":"https://github.com/suminagashi/orchestra","last_synced_at":"2026-02-17T15:31:22.019Z","repository":{"id":39041262,"uuid":"283632705","full_name":"suminagashi/orchestra","owner":"suminagashi","description":"⚡️ Sleek Symfony Admin 🌪","archived":false,"fork":false,"pushed_at":"2023-01-06T12:52:34.000Z","size":1039,"stargazers_count":1,"open_issues_count":19,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-04T14:22:37.129Z","etag":null,"topics":["annotations","backoffice","symfony","tailwindcss","vuejs"],"latest_commit_sha":null,"homepage":"","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/suminagashi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-07-30T00:43:10.000Z","updated_at":"2022-05-28T09:26:37.000Z","dependencies_parsed_at":"2023-02-06T03:15:26.251Z","dependency_job_id":null,"html_url":"https://github.com/suminagashi/orchestra","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/suminagashi/orchestra","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suminagashi%2Forchestra","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suminagashi%2Forchestra/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suminagashi%2Forchestra/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suminagashi%2Forchestra/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/suminagashi","download_url":"https://codeload.github.com/suminagashi/orchestra/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suminagashi%2Forchestra/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279001944,"owners_count":26083264,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["annotations","backoffice","symfony","tailwindcss","vuejs"],"created_at":"2024-09-24T13:44:24.829Z","updated_at":"2025-10-09T21:02:04.730Z","avatar_url":"https://github.com/suminagashi.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003cimg alt=\"orchestra\" src=\"./src/Resources/public/img/orchestra.png\" width=\"500\"/\u003e\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n\u003cb\u003eSleek symfony admin boilerplate\u003c/b\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://github.com/suminagashi/orchestra/workflows/Build/badge.svg?branch=master\" alt=\"Build\"\u003e\n    \u003ca href=\"https://packagist.org/packages/suminagashi/orchestra\"\u003e\u003cimg src=\"https://poser.pugx.org/suminagashi/orchestra/version\" alt=\"Version\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://packagist.org/packages/suminagashi/orchestra\"\u003e\u003cimg src=\"https://poser.pugx.org/suminagashi/orchestra/downloads\" alt=\"Total Download\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://packagist.org/packages/suminagashi/orchestra\"\u003e\u003cimg src=\"https://poser.pugx.org/suminagashi/orchestra/license\" alt=\"License\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## Install the bundle :\n\n\u003e Flex recipe incoming...\n\n### Register the bundle :\n\n``` php\n// config/bundles.php\n\nreturn [\n    ...\n    Suminagashi\\OrchestraBundle\\OrchestraBundle::class =\u003e ['all' =\u003e true],\n];\n```\n\n### Register the route :\n\n``` yaml\n// config/routes/orchestra.yaml\n\norchestra_admin:\n  resource: \"@OrchestraBundle/Resources/config/routes.xml\"\n  prefix: /admin\n```\n\n### Usage :\n\n- Orchestra provide 2 new annotations :\n    - `@Resource` for class\n    - `@Field` for properties\n- The data validation use `Symfony\\Component\\Validator\\Constraints` annotation\n\n\n### Examples :\n\n``` php\n// src/Entity/Dummy.php\n\n\u003c?php\n\nnamespace App\\Entity;\n\nuse Suminagashi\\OrchestraBundle\\Annotation\\Resource;\nuse Suminagashi\\OrchestraBundle\\Annotation\\Field;\n\nuse Doctrine\\ORM\\Mapping as ORM;\nuse Symfony\\Component\\Serializer\\Annotation\\Groups;\nuse Symfony\\Component\\Validator\\Constraints as Assert;\n\n/**\n * @Resource(\n *  name=\"Dummy\"\n * )\n */\nclass Dummy\n{\n    /**\n     * @var string\n     * @ORM\\Column(type=\"string\")\n     * @Groups({\"read\", \"write\"})\n     * @Field(label=\"Test\")\n     * @Assert\\NotNull()\n     */\n    private $test;\n\n    public function getTest(): ?string\n    {\n        return $this-\u003etest;\n    }\n\n    public function setTest(string $test): self\n    {\n        $this-\u003etest = $test;\n\n        return $this;\n    }\n}\n```\n\n### API Reference\n\n#### `@Resource`\n\n| Attribute  | Description |\n| ------------- | ------------- |\n| `label`  | Used to set the label displayed in the menu |\n| `name`  | Override default name of the resource |\n| `actions`  | WIP : Set available CRUD operations |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuminagashi%2Forchestra","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsuminagashi%2Forchestra","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuminagashi%2Forchestra/lists"}