{"id":21900699,"url":"https://github.com/php-cmsig/seal-loupe-adapter","last_synced_at":"2025-08-02T12:39:45.497Z","repository":{"id":190518743,"uuid":"674850795","full_name":"PHP-CMSIG/seal-loupe-adapter","owner":"PHP-CMSIG","description":"An adapter to support Loupe in CMS-IG SEAL search abstraction. Part of the https://github.com/php-cmsig/search project. READ-ONLY Repository","archived":false,"fork":false,"pushed_at":"2025-07-24T17:24:08.000Z","size":124,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"0.11","last_synced_at":"2025-07-24T22:52:11.711Z","etag":null,"topics":["cmsig","loupe-php","php","seal-adapter","seal-php-adapter","search-client"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":false,"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/PHP-CMSIG.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","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},"funding":{"github":["Toflar","alexander-schranz"],"custom":["https://paypal.me/L91"]}},"created_at":"2023-08-05T00:50:30.000Z","updated_at":"2025-07-24T17:24:12.000Z","dependencies_parsed_at":"2023-08-25T02:50:27.473Z","dependency_job_id":"171c4dbd-04e6-4f57-9128-e96913db1f26","html_url":"https://github.com/PHP-CMSIG/seal-loupe-adapter","commit_stats":null,"previous_names":["schranz-search/seal-loupe-adapter","php-cmsig/seal-loupe-adapter"],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/PHP-CMSIG/seal-loupe-adapter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PHP-CMSIG%2Fseal-loupe-adapter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PHP-CMSIG%2Fseal-loupe-adapter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PHP-CMSIG%2Fseal-loupe-adapter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PHP-CMSIG%2Fseal-loupe-adapter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PHP-CMSIG","download_url":"https://codeload.github.com/PHP-CMSIG/seal-loupe-adapter/tar.gz/refs/heads/0.11","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PHP-CMSIG%2Fseal-loupe-adapter/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268391600,"owners_count":24243295,"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-08-02T02:00:12.353Z","response_time":74,"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":["cmsig","loupe-php","php","seal-adapter","seal-php-adapter","search-client"],"created_at":"2024-11-28T15:09:38.363Z","updated_at":"2025-08-02T12:39:45.471Z","avatar_url":"https://github.com/PHP-CMSIG.png","language":"PHP","funding_links":["https://github.com/sponsors/Toflar","https://github.com/sponsors/alexander-schranz","https://paypal.me/L91"],"categories":[],"sub_categories":[],"readme":"\u003e **Note**:\n\u003e This is part of the `cmsig/search` project create issues in the [main repository](https://github.com/php-cmsig/search).\n\n---\n\n\u003cdiv align=\"center\"\u003e\n    \u003cimg alt=\"SEAL Logo with an abstract seal sitting on a telescope.\" src=\"https://avatars.githubusercontent.com/u/120221538?s=400\u0026v=6\" width=\"200\" height=\"200\"\u003e\n\u003c/div\u003e\n\n\u003cdiv align=\"center\"\u003eLogo created by \u003ca href=\"https://cargocollective.com/meinewilma\"\u003eMeine Wilma\u003c/a\u003e\u003c/div\u003e\n\n\u003ch1 align=\"center\"\u003eSEAL \u003cbr /\u003e Loupe Adapter\u003c/h1\u003e\n\n\u003cbr /\u003e\n\u003cbr /\u003e\n\nThe `LoupeAdapter` write the documents into a [Loupe](https://github.com/loupe-php/loupe) SQLite instance.\n\n\u003e **Note**:\n\u003e This project is heavily under development and any feedback is greatly appreciated.\n\n## Installation\n\nUse [composer](https://getcomposer.org/) for install the package:\n\n```bash\ncomposer require cmsig/seal cmsig/seal-loupe-adapter\n```\n\n## Usage.\n\nThe following code shows how to create an Engine using this Adapter:\n\n```php\n\u003c?php\n\nuse Loupe\\Loupe\\LoupeFactory;\nuse CmsIg\\Seal\\Adapter\\Loupe\\LoupeAdapter;\nuse CmsIg\\Seal\\Adapter\\Loupe\\LoupeHelper;\nuse CmsIg\\Seal\\Engine;\n\n$loupeFactory = new LoupeFactory();\n\n$engine = new Engine(\n    new LoupeAdapter(new LoupeHelper($loupeFactory, 'var/indexes/')),\n    $schema,\n);\n```\n\nVia DSN for your favorite framework:\n\n```env\nloupe://var/indexes/\nloupe://\n```\n\n## Authors\n\n- [Alexander Schranz](https://github.com/alexander-schranz/)\n- [The Community Contributors](https://github.com/php-cmsig/search/graphs/contributors)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphp-cmsig%2Fseal-loupe-adapter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphp-cmsig%2Fseal-loupe-adapter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphp-cmsig%2Fseal-loupe-adapter/lists"}