{"id":20886998,"url":"https://github.com/fleetbase/registry-bridge","last_synced_at":"2026-04-02T16:22:30.538Z","repository":{"id":228516584,"uuid":"774201859","full_name":"fleetbase/registry-bridge","owner":"fleetbase","description":"Internal Bridge between Fleetbase API and Extensions Registry","archived":false,"fork":false,"pushed_at":"2026-03-26T09:13:00.000Z","size":1291,"stargazers_count":3,"open_issues_count":0,"forks_count":11,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-27T03:25:22.246Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fleetbase.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-03-19T05:57:13.000Z","updated_at":"2026-03-26T09:06:32.000Z","dependencies_parsed_at":"2024-06-19T16:54:07.881Z","dependency_job_id":"1ad7418e-5f24-4df0-9380-34669bb9cd16","html_url":"https://github.com/fleetbase/registry-bridge","commit_stats":null,"previous_names":["fleetbase/registry-bridge"],"tags_count":29,"template":false,"template_full_name":null,"purl":"pkg:github/fleetbase/registry-bridge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fleetbase%2Fregistry-bridge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fleetbase%2Fregistry-bridge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fleetbase%2Fregistry-bridge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fleetbase%2Fregistry-bridge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fleetbase","download_url":"https://codeload.github.com/fleetbase/registry-bridge/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fleetbase%2Fregistry-bridge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31309834,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T12:59:32.332Z","status":"ssl_error","status_checked_at":"2026-04-02T12:54:48.875Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-18T08:18:43.129Z","updated_at":"2026-04-02T16:22:30.486Z","avatar_url":"https://github.com/fleetbase.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cp align=\"center\"\u003e\n        \u003cimg src=\"https://user-images.githubusercontent.com/58805033/191936702-fed04b0f-7966-4041-96d0-95e27bf98248.png\" width=\"280\" height=\"80\" style=\"height: 80px;\" /\u003e\n    \u003c/p\u003e\n    \u003cp align=\"center\"\u003e\n        Internal Bridge between Fleetbase API and Extensions Registry\n    \u003c/p\u003e\n\u003c/p\u003e\n\n---\n\n## Overview\n\nThis monorepo contains both the frontend and backend components of the Internal Registry Bridge for Fleetbase. The frontend is built using Ember.js and the backend is implemented in PHP.\n\n* PHP 7.3.0 or above\n* Ember.js v4.8 or above\n* Ember CLI v4.8 or above\n* Node.js v18 or above\n\n## Structure\n\n```\n├── addon\n├── app\n├── assets\n├── translations\n├── config\n├── node_modules\n├── server\n│ ├── config\n│ ├── data\n│ ├── migrations\n│ ├── resources\n│ ├── src\n│ ├── tests\n│ └── vendor\n├── tests\n├── testem.js\n├── index.js\n├── package.json\n├── phpstan.neon.dist\n├── phpunit.xml.dist\n├── pnpm-lock.yaml\n├── ember-cli-build.js\n├── composer.json\n├── CONTRIBUTING.md\n├── LICENSE.md\n├── README.md\n```\n\n## Installation\n\n### Backend\n\nInstall the PHP packages using Composer:\n\n```bash\ncomposer require fleetbase/core-api\ncomposer require fleetbase/registry-bridge\n```\n### Frontend\n\nInstall the Ember.js Engine/Addon:\n\n```bash\npnpm install @fleetbase/registry-bridge-engine\n```\n\n## Usage\n\n### Backend\n\n🧹 Keep a modern codebase with **PHP CS Fixer**:\n```bash\ncomposer lint\n```\n\n⚗️ Run static analysis using **PHPStan**:\n```bash\ncomposer test:types\n```\n\n✅ Run unit tests using **PEST**\n```bash\ncomposer test:unit\n```\n\n🚀 Run the entire test suite:\n```bash\ncomposer test\n```\n\n### Frontend\n\n🧹 Keep a modern codebase with **ESLint**:\n```bash\npnpm lint\n```\n\n✅ Run unit tests using **Ember/QUnit**\n```bash\npnpm test\npnpm test:ember\npnpm test:ember-compatibility\n```\n\n🚀 Start the Ember Addon/Engine\n```bash\npnpm start\n```\n\n🔨 Build the Ember Addon/Engine\n```bash\npnpm build\n```\n\n## Contributing\nSee the Contributing Guide for details on how to contribute to this project.\n\n## License\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffleetbase%2Fregistry-bridge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffleetbase%2Fregistry-bridge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffleetbase%2Fregistry-bridge/lists"}