{"id":19647294,"url":"https://github.com/ibexa/core","last_synced_at":"2026-01-19T12:03:17.513Z","repository":{"id":37096911,"uuid":"308283469","full_name":"ibexa/core","owner":"ibexa","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-14T14:37:02.000Z","size":82474,"stargazers_count":7,"open_issues_count":37,"forks_count":17,"subscribers_count":12,"default_branch":"main","last_synced_at":"2026-01-14T17:53:31.203Z","etag":null,"topics":["ibexa-bundle","ibexa-product"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ibexa.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"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,"notice":null,"maintainers":null,"copyright":"COPYRIGHT","agents":null,"dco":null,"cla":null}},"created_at":"2020-10-29T09:48:29.000Z","updated_at":"2026-01-09T10:05:31.000Z","dependencies_parsed_at":"2024-03-29T15:30:10.975Z","dependency_job_id":"3779371e-9908-4d2e-8728-10c8d254e188","html_url":"https://github.com/ibexa/core","commit_stats":{"total_commits":13940,"total_committers":199,"mean_commits":70.05025125628141,"dds":0.8427546628407461,"last_synced_commit":"af9fdfa6df1066ef1cd8a2434288caadb0e58381"},"previous_names":[],"tags_count":100,"template":false,"template_full_name":null,"purl":"pkg:github/ibexa/core","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ibexa%2Fcore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ibexa%2Fcore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ibexa%2Fcore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ibexa%2Fcore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ibexa","download_url":"https://codeload.github.com/ibexa/core/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ibexa%2Fcore/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28567861,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T08:53:44.001Z","status":"ssl_error","status_checked_at":"2026-01-19T08:52:40.245Z","response_time":67,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["ibexa-bundle","ibexa-product"],"created_at":"2024-11-11T14:43:18.542Z","updated_at":"2026-01-19T12:03:17.506Z","avatar_url":"https://github.com/ibexa.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ibexa Kernel\n\nThis package is part of [Ibexa DXP](https://ibexa.co).\n\nTo use this package, [install Ibexa DXP](https://doc.ibexa.co/en/latest/install/).\n\nThis package contains an advanced Content Model, allowing to structure any kind of content or content-like data in a future-proof Content Repository. \nIbexa Kernel also aims to provide additional features for the MVC layer (Symfony) to increase your productivity [Ibexa DXP](https://ibexa.co).\n\n## Current Organization\n\nMVC layer:\n- [src/bundle](src/bundle) - the bundles that are important to expose the functionality of the Backend and MVC layer to Symfony.\n- [src/lib/MVC](src/lib/MVC) - the parts that make up the different components extending Symfony.\n- [src/lib/Pagination](src/lib/Pagination) - a component extending PagerFanta for pagination of Ibexa search queries.\n\nBackend:\n- [src/contracts](src/contracts) - the definition of stable interfaces for the PHP *Public* API, mainly Content *Repository API*.\n- [src/contracts/Persistence](src/contracts/Persistence) - a layer which is not frozen yet, meaning it might change in between releases. Those are persistence interfaces for Storage Engine.\n- [src/lib](src/lib) - implementations of API Contracts; the naming aims to map to name of the interface they implement. For example, `Ibexa\\Core\\Persistence\\Legacy` being implementation of `Ibexa\\Contracts\\Core\\Persistence`.\n\n## Testing Locally\n\nThis kernel contains a comprehensive set of unit, functional, and integration tests. At the time of writing, 9k unit tests, 8k integration tests, and several functional tests.\n\n**Dependencies**\n* **PHP 7 Modules**: php7\\_intl php7\\_xsl php7\\_gd php7\\_sqlite *(aka `pdo\\_sqlite`)*\n* **Database**: sqlite3, optionally: mysql/postgres *if so make sure to have relevant pdo modules installed*\n\nFor Contributing to this Bundle, you should make sure to run both unit and integration tests.\n\n1. Set up this repository locally:\n\n    ```bash\n    # Note: Change the line below to the ssh format of your fork to create topic branches to propose as pull requests\n    git clone https://github.com/ibexa/core.git\n    cd core\n    composer install\n    ```\n2. Run unit tests:\n\n    At this point you should be able to run unit tests:\n    ```bash\n    composer unit\n    ```\n\n3. Run integration tests:\n\n    ```bash\n    # If you want to test against mysql or postgres instead of sqlite, define one of these with reference to an empty test db:\n    # export DATABASE=\"mysql://root@localhost/$DB_NAME\"\n    # export DATABASE=\"pgsql://postgres@localhost/$DB_NAME\"\n    composer integration\n    ```\n\n    To run integration tests against Solr, see [Solr Search Engine Bundle for Ibexa DXP](https://github.com/ibexa/solr-search-engine).\n\n## COPYRIGHT\n\nCopyright (C) 1999-2025 Ibexa AS (formerly eZ Systems AS). All rights reserved.\n\n## LICENSE\n\nThis source code is available separately under the following licenses:\n\nA - Ibexa Business Use License Agreement (Ibexa BUL),\nversion 2.4 or later versions (as license terms may be updated from time to time)\nIbexa BUL is granted by having a valid Ibexa DXP (formerly eZ Platform Enterprise) subscription,\nas described at: https://www.ibexa.co/product\nFor the full Ibexa BUL license text, please see:\nhttps://www.ibexa.co/software-information/licenses-and-agreements (latest version applies)\n\nAND\n\nB - GNU General Public License, version 2\nGrants an copyleft open source license with ABSOLUTELY NO WARRANTY. For the full GPL license text, please see:\nhttps://www.gnu.org/licenses/old-licenses/gpl-2.0.html\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fibexa%2Fcore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fibexa%2Fcore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fibexa%2Fcore/lists"}