{"id":19693652,"url":"https://github.com/ezsystems/ezplatform-kernel","last_synced_at":"2025-11-12T21:25:02.951Z","repository":{"id":37823882,"uuid":"248475003","full_name":"ezsystems/ezplatform-kernel","owner":"ezsystems","description":"Ibexa Kernel (Repository, MVC layer, Symfony integration).","archived":false,"fork":false,"pushed_at":"2025-06-05T18:14:49.000Z","size":66066,"stargazers_count":13,"open_issues_count":6,"forks_count":30,"subscribers_count":19,"default_branch":"1.3","last_synced_at":"2025-09-22T03:52:09.491Z","etag":null,"topics":["hacktoberfest","ibexa-platform","ibexa-platform-bundle"],"latest_commit_sha":null,"homepage":"https://ibexa.co","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/ezsystems.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}},"created_at":"2020-03-19T10:34:14.000Z","updated_at":"2025-02-11T13:22:25.000Z","dependencies_parsed_at":"2022-06-22T19:33:52.155Z","dependency_job_id":"b372ac85-d5f3-46bf-8b1c-5d467f84eb0a","html_url":"https://github.com/ezsystems/ezplatform-kernel","commit_stats":{"total_commits":13760,"total_committers":190,"mean_commits":72.42105263157895,"dds":0.8406976744186047,"last_synced_commit":"6cd2cb89c036fd319eb4e0316d29a08497f7df2b"},"previous_names":[],"tags_count":75,"template":false,"template_full_name":null,"purl":"pkg:github/ezsystems/ezplatform-kernel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ezsystems%2Fezplatform-kernel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ezsystems%2Fezplatform-kernel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ezsystems%2Fezplatform-kernel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ezsystems%2Fezplatform-kernel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ezsystems","download_url":"https://codeload.github.com/ezsystems/ezplatform-kernel/tar.gz/refs/heads/1.3","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ezsystems%2Fezplatform-kernel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":284115248,"owners_count":26949955,"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-11-12T02:00:06.336Z","response_time":59,"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":["hacktoberfest","ibexa-platform","ibexa-platform-bundle"],"created_at":"2024-11-11T19:17:37.442Z","updated_at":"2025-11-12T21:25:02.932Z","avatar_url":"https://github.com/ezsystems.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- [eZ/Bundle](eZ/Bundle) - the bundles that are important to expose the functionality of the Backend and MVC layer to Symfony.\n- [eZ/Publish/Core/MVC](eZ/Publish/Core/MVC) - the parts that make up the different components extending Symfony.\n- [eZ/Publish/Core/Pagination](eZ/Publish/Core/Pagination) - a component extending PagerFanta for pagination of eZ Platform search queries.\n\nBackend:\n- [eZ/Publish/API](eZ/Publish/API) - the definition of stable interfaces for the PHP *Public* API, mainly Content *Repository API*.\n- [eZ/Publish/SPI/Persistence](eZ/Publish/SPI/Persistence) - a layer which is not frozen yet, meaning it might change in between releases. Those are persistence interfaces for Storage Engine.\n- [eZ/Publish/SPI](eZ/Publish/SPI) - (anything other than Persistence) is frozen and has a Backward Compatibility promise of Service Provider Interface, meaning no breaking changes both from consumption and implementation POV.\n- [eZ/Publish/Core](eZ/Publish/Core) - implementations of both APIs and SPIs; the naming aims to map to name of the interface they implement. For example, `Core\\Persistence\\Legacy` being implementation of `SPI\\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/ezsystems/ezplatform-kernel.git\n    cd ezplatform-kernel\n    composer install\n    ```\n2. Run unit tests:\n\n    At this point you should be able to run unit tests:\n    ```bash\n    php -d memory_limit=-1 vendor/bin/phpunit\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    php -d memory_limit=-1 vendor/bin/phpunit -c phpunit-integration-legacy.xml\n    ```\n\n    To run integration tests against Solr, see [Solr Search Engine Bundle for Ibexa DXP](https://github.com/ezsystems/ezplatform-solr-search-engine).\n\n## COPYRIGHT\n\nCopyright (C) 1999-2021 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%2Fezsystems%2Fezplatform-kernel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fezsystems%2Fezplatform-kernel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fezsystems%2Fezplatform-kernel/lists"}