{"id":22351811,"url":"https://github.com/positibe/cmsbundle","last_synced_at":"2026-05-03T19:33:25.734Z","repository":{"id":57043918,"uuid":"46887720","full_name":"Positibe/CmsBundle","owner":"Positibe","description":"Positibe Content Management System Bundle","archived":false,"fork":false,"pushed_at":"2019-03-26T15:49:20.000Z","size":308,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-31T13:14:56.238Z","etag":null,"topics":["bundle","cmf","cms","positibe-bundles","symfony-bundle","symfony-cmf","symonfy"],"latest_commit_sha":null,"homepage":"","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/Positibe.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}},"created_at":"2015-11-25T21:22:33.000Z","updated_at":"2019-03-26T15:49:21.000Z","dependencies_parsed_at":"2022-08-24T01:21:07.911Z","dependency_job_id":null,"html_url":"https://github.com/Positibe/CmsBundle","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Positibe%2FCmsBundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Positibe%2FCmsBundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Positibe%2FCmsBundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Positibe%2FCmsBundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Positibe","download_url":"https://codeload.github.com/Positibe/CmsBundle/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245650495,"owners_count":20650105,"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":["bundle","cmf","cms","positibe-bundles","symfony-bundle","symfony-cmf","symonfy"],"created_at":"2024-12-04T12:15:37.104Z","updated_at":"2026-05-03T19:33:25.693Z","avatar_url":"https://github.com/Positibe.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"PositibeCmsBundle\n=================\n\nThis bundle provide a AbstractPage, Page and Category entity and integrate some other Positibe bundles to create a Page CMS representation.\n\nInstallation\n------------\n\nBefore\n\nTo install the bundle just add the dependent bundles:\n\n    php composer.phar require positibe/cms-bundle\n\nThis bundle set the required configuration of other Positibe Bundles for you like:\n* PositibeMenuBundle\n* PositibeMediaBundle\n* PositibeCmfRoutingExtraBundle\n* PositibeCmsBundle\n\nBut it's better take a look at those README.md file\n\nNext, be sure to enable the bundles in your application kernel:\n\n    \u003c?php\n    // app/AppKernel.php\n    public function registerBundles()\n    {\n        return array(\n            // ...\n            // Sylius ResourceBundle\n            new Stof\\DoctrineExtensionsBundle\\StofDoctrineExtensionsBundle(),\n            new FOS\\RestBundle\\FOSRestBundle(),\n            new JMS\\SerializerBundle\\JMSSerializerBundle($this),\n            new Sylius\\Bundle\\ResourceBundle\\SyliusResourceBundle(),\n            new WhiteOctober\\PagerfantaBundle\\WhiteOctoberPagerfantaBundle(),\n            new Bazinga\\Bundle\\HateoasBundle\\BazingaHateoasBundle(),\n            new winzou\\Bundle\\StateMachineBundle\\winzouStateMachineBundle(),\n            new Knp\\Bundle\\MenuBundle\\KnpMenuBundle(),\n            new Liip\\ImagineBundle\\LiipImagineBundle(),\n            new Ivory\\CKEditorBundle\\IvoryCKEditorBundle(),\n            new FM\\ElfinderBundle\\FMElfinderBundle(),\n            new Sonata\\CoreBundle\\SonataCoreBundle(),\n            new Sonata\\BlockBundle\\SonataBlockBundle(),\n            new Sonata\\SeoBundle\\SonataSeoBundle(),\n            new Lunetics\\LocaleBundle\\LuneticsLocaleBundle(),\n            new Symfony\\Cmf\\Bundle\\CoreBundle\\CmfCoreBundle(),\n            new Symfony\\Cmf\\Bundle\\RoutingBundle\\CmfRoutingBundle(),\n            new Symfony\\Cmf\\Bundle\\RoutingAutoBundle\\CmfRoutingAutoBundle(),\n            new Symfony\\Cmf\\Bundle\\SeoBundle\\CmfSeoBundle(),\n            new Positibe\\Bundle\\CmfRoutingExtraBundle\\PositibeCmfRoutingExtraBundle(),\n            new Positibe\\Bundle\\CoreBundle\\PositibeCoreBundle(),\n            new Positibe\\Bundle\\MediaBundle\\PositibeMediaBundle(),\n            new Positibe\\Bundle\\MenuBundle\\PositibeMenuBundle(),\n            new Positibe\\Bundle\\CmsBundle\\PositibeCmsBundle(),\n\n            // ...\n        );\n    }\n\nConfiguration\n=============\n\nImport all necessary configurations to your app/config/config.yml the basic configuration.\n    # app/config/config.yml\n    imports:\n        - { resource: '@PositibeCoreBundle/Resources/config/config.yml'}\n        - { resource: '@PositibeCmsBundle/Resources/config/config.yml' }\n        - { resource: '@PositibeMediaBundle/Resources/config/config.yml'}\n        - { resource: '@PositibeMenuBundle/Resources/config/config.yml'}\n        - { resource: '@PositibeCmfRoutingExtraBundle/Resources/config/config.yml' }\n\n\n    #If you want some advanced configuration\n    positibe_cms:\n        public_routes: # e.g. [homepage, my-company]  List of public symfony routes available.\n        content_class: # e.g. [ AppBundle\\Entity\\Post, AppBundle\\Entity\\Category ] List of content that extend of MenuNodeReferralInterface.\n\n**Caution:**: This bundle use the timestampable, sluggable, softdeleteable, translatable and sortable extension of GedmoDoctrineExtension. Be sure that you have the listeners for this extensions enable. You can also to use StofDoctrineExtensionBundle.\n**Caution:**: If you have the parameter ``positibe.menu_node.class: Positibe\\Bundle\\MenuBundle\\Doctrine\\Orm\\MenuNode`` configured in your config.yml please erase it.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpositibe%2Fcmsbundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpositibe%2Fcmsbundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpositibe%2Fcmsbundle/lists"}