{"id":21900663,"url":"https://github.com/php-cmsig/seal-solr-adapter","last_synced_at":"2025-10-26T02:33:26.791Z","repository":{"id":65698086,"uuid":"595882882","full_name":"PHP-CMSIG/seal-solr-adapter","owner":"PHP-CMSIG","description":"An adapter to support Apache Solr 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-03-19T16:36:04.000Z","size":302,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"0.7","last_synced_at":"2025-04-15T19:54:06.998Z","etag":null,"topics":["apache-solr","cmsig","php","seal-adapter","seal-php-adapter","search-client","solr","solr-cloud","solrcloud"],"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},"funding":{"github":["alexander-schranz"],"custom":["https://paypal.me/L91"]}},"created_at":"2023-02-01T02:01:18.000Z","updated_at":"2025-03-18T11:26:53.000Z","dependencies_parsed_at":"2023-02-17T01:16:04.288Z","dependency_job_id":"189027a6-4177-4045-acf0-6f8d28191967","html_url":"https://github.com/PHP-CMSIG/seal-solr-adapter","commit_stats":{"total_commits":12,"total_committers":1,"mean_commits":12.0,"dds":0.0,"last_synced_commit":"a9406c3e59ec159d7552c29bf574daa29b1d3aa4"},"previous_names":["php-cmsig/seal-solr-adapter","schranz-search/seal-solr-adapter"],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PHP-CMSIG%2Fseal-solr-adapter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PHP-CMSIG%2Fseal-solr-adapter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PHP-CMSIG%2Fseal-solr-adapter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PHP-CMSIG%2Fseal-solr-adapter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PHP-CMSIG","download_url":"https://codeload.github.com/PHP-CMSIG/seal-solr-adapter/tar.gz/refs/heads/0.7","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249145296,"owners_count":21219966,"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","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":["apache-solr","cmsig","php","seal-adapter","seal-php-adapter","search-client","solr","solr-cloud","solrcloud"],"created_at":"2024-11-28T15:09:27.682Z","updated_at":"2025-10-26T02:33:26.465Z","avatar_url":"https://github.com/PHP-CMSIG.png","language":"PHP","funding_links":["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 Solr Adapter\u003c/h1\u003e\n\n\u003cbr /\u003e\n\u003cbr /\u003e\n\nThe `SolrAdapter` write the documents into a [Apache Solr](https://github.com/apache/solr) server instance. The Apache Solr server is running in the [`cloud mode`](https://solr.apache.org/guide/solr/latest/getting-started/tutorial-solrcloud.html) as we require to use collections for indexes.\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-solr-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 Solr\\Client;\nuse Solarium\\Core\\Client\\Adapter\\Curl;\nuse CmsIg\\Seal\\Adapter\\Solr\\SolrAdapter;\nuse CmsIg\\Seal\\Engine;\nuse Symfony\\Component\\EventDispatcher\\EventDispatcher;\n\n$client = new Client(new Curl(), new EventDispatcher(), [\n    'endpoint' =\u003e [\n        'localhost' =\u003e [\n            'host' =\u003e '127.0.0.1',\n            'port' =\u003e '8983',\n            // authenticated required for configset api https://solr.apache.org/guide/8_9/configsets-api.html\n            // alternative set solr.disableConfigSetsCreateAuthChecks=true in your server setup\n            'username' =\u003e 'solr',\n            'password' =\u003e 'SolrRocks',\n        ],\n    ]\n]);\n\n$engine = new Engine(\n    new SolrAdapter($client),\n    $schema,\n);\n```\n\nVia DSN for your favorite framework:\n\n```env\nsolr://127.0.0.1:8983\nsolr://solr:SolrRocks@127.0.0.1:8983\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-solr-adapter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphp-cmsig%2Fseal-solr-adapter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphp-cmsig%2Fseal-solr-adapter/lists"}