{"id":20260041,"url":"https://github.com/networking/elasticsearch-bundle","last_synced_at":"2026-06-29T03:31:50.757Z","repository":{"id":11134246,"uuid":"13497954","full_name":"networking/elasticsearch-bundle","owner":"networking","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-19T09:19:10.000Z","size":45355,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":6,"default_branch":"master","last_synced_at":"2026-01-19T16:42:43.486Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/networking.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2013-10-11T12:07:12.000Z","updated_at":"2026-01-19T09:18:28.000Z","dependencies_parsed_at":"2023-02-17T20:00:35.123Z","dependency_job_id":"6ae14900-aa61-4f43-9a03-89679ce0079f","html_url":"https://github.com/networking/elasticsearch-bundle","commit_stats":null,"previous_names":[],"tags_count":35,"template":false,"template_full_name":null,"purl":"pkg:github/networking/elasticsearch-bundle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networking%2Felasticsearch-bundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networking%2Felasticsearch-bundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networking%2Felasticsearch-bundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networking%2Felasticsearch-bundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/networking","download_url":"https://codeload.github.com/networking/elasticsearch-bundle/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networking%2Felasticsearch-bundle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34912252,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-29T02:00:05.398Z","response_time":58,"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":[],"created_at":"2024-11-14T11:17:46.522Z","updated_at":"2026-06-29T03:31:50.737Z","avatar_url":"https://github.com/networking.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"elasticsearch-bundle\n====================\n\n###This bundle only works with the networking/init-cms-bundle!\n\nThis bundle will provide search capabilities to your networking initcms\nwith default setup for pages and media (PDF files).\n\n\nInstall bundle via composer.\n\n    \"require\": {\n        ....\n        \"networking/elasticsearch-bundle\": \"^2.0\",\n        ...\n    }\n    \"repositories\": [\n        {\n            \"type\": \"vcs\",\n            \"url\": \"git@github.com:networking/elasticsearch-bundle.git\"\n        }\n    ],\n\nUpdate your AppKernel.php\n\n```\n\u003c?php\n\t// app/AppKernel.php\n\tpublic function registerbundles()\n\t{\n\t    return array(\n\t        // ...\n            new Networking\\InitCmsBundle\\NetworkingInitCmsBundle(),\n            new Networking\\ElasticSearchBundle\\NetworkingElasticSearchBundle()\n\t    );\n\t}\n```\n\nAdd the following parameters to your parameters.yaml\n\n    elastic_search_host: localhost\n    elastic_search_index: index_name #replace with the name of your search index\n    \nIn your routing.yaml file, and the routing for the search action\n\n    networking_elastic_search:\n        resource: \"@NetworkingElasticSearchBundle/Resources/config/routing.yaml\"\n        prefix:   /\n    \nAnd finally add the type configuration to the config.yaml for the minimum \nindexing of pages and media\n    \n```\nfos_elastica:\n        clients:\n            default: { host: %elastic_search_host%, port: 9200 }\n        indexes:\n            %elastic_search_index%:\n                client: default\n                finder: ~\n                settings:\n                    index:\n                        analysis:\n                            analyzer:\n                                my_search_analyzer:\n                                    type: custom\n                                    tokenizer: standard\n                                    filter: [standard, lowercase, deu_snowball]\n                                deu_snowball:\n                                    type: snowball\n                                    language: German2\n                            filter:\n                                 deu_snowball:\n                                    type: snowball\n                                    language: German2\n\n                types:\n                    page:\n                        mappings:\n                            name: {boost: 30, analyzer: my_search_analyzer}\n                            metaTitle:  {\"index\" : \"no\"}\n                            locale: { type: 'string', store: false}\n                            content: {boost: 30, analyzer: my_search_analyzer}\n                            url: {\"index\" : \"no\"}\n                    media:\n                        mappings:\n                            name: {boost: 30, analyzer: my_search_analyzer}\n                            metaTitle:  {\"index\" : \"no\"}\n                            locale: { type: 'string', store: false}\n                            content: {boost: 30, analyzer: my_search_analyzer}\n                            url: {\"index\" : \"no\"}\n                        persistence:\n                            driver: orm # orm, mongodb, propel are available\n                            model: Networking\\InitCmsBundle\\Entity\\Media\n                            provider:\n                                service: networking_elastic_search.search_provider.media\n                            listener:\n                                insert: false\n                                update: false\n                                delete: true\n```\n\nIn order to silence Elasticsearch Server errors in production mode add\nthe following parameter to the config_prod.yaml file. This extension of\nthe default Elastica Client will prevent a 500 error should the Elastic \nhost no longer be available.\n\n    parameters:\n        fos_elastica.client.class: Networking\\ElasticSearchBundle\\Elastica\\Client\n        \n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetworking%2Felasticsearch-bundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnetworking%2Felasticsearch-bundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetworking%2Felasticsearch-bundle/lists"}