{"id":15019258,"url":"https://github.com/networking/bootstrap-bundle","last_synced_at":"2026-01-21T14:01:42.260Z","repository":{"id":60361850,"uuid":"542581869","full_name":"networking/bootstrap-bundle","owner":"networking","description":"Symfony 6 compatible version of phiamo/MopaBootstrapBundle","archived":false,"fork":false,"pushed_at":"2023-07-13T11:44:16.000Z","size":1320,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-10-22T10:11:11.943Z","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":"2022-09-28T12:34:18.000Z","updated_at":"2023-12-08T06:34:11.000Z","dependencies_parsed_at":"2024-10-10T04:40:46.605Z","dependency_job_id":"389a03a7-8cc1-4b3d-9ff3-76b95036caa1","html_url":"https://github.com/networking/bootstrap-bundle","commit_stats":{"total_commits":2,"total_committers":1,"mean_commits":2.0,"dds":0.0,"last_synced_commit":"f9a17ff8eef28d5c7efce902fa534a844f93661d"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/networking/bootstrap-bundle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networking%2Fbootstrap-bundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networking%2Fbootstrap-bundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networking%2Fbootstrap-bundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networking%2Fbootstrap-bundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/networking","download_url":"https://codeload.github.com/networking/bootstrap-bundle/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/networking%2Fbootstrap-bundle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28634786,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T04:47:28.174Z","status":"ssl_error","status_checked_at":"2026-01-21T04:47:22.943Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2024-09-24T19:53:14.055Z","updated_at":"2026-01-21T14:01:42.244Z","avatar_url":"https://github.com/networking.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"NetworkingBootstrapBundle (Clone of MopaBootstrapBundle)\n========================================================\n\nThis is a clone of the MopaBootstrapBundle, which works with symfony 6. \n\nI created this clone, so that I can continue developing our InitCmsBundle with mopa/bootstrap-bundle. \n\nThis Bundle will likely be removed once the mopa/bootstrap-bundle can be used with symfony 6.\n\nFor official documentation, view the mopa/bootstrap-bundle phiamo/MopaBootstrapBundle/\n\n[![Build Status](https://github.com/phiamo/MopaBootstrapBundle/workflows/Continuous%20integration/badge.svg?branch=master)](https://github.com/phiamo/MopaBootstrapBundle/actions?query=workflow%3A%22Continuous%20integration%22%20branch%3Amaster)\n[![SensioLabsInsight](https://insight.sensiolabs.com/projects/0a6dbd4c-714b-47a4-b662-254cdf6ec208/mini.png)](https://insight.sensiolabs.com/projects/0a6dbd4c-714b-47a4-b662-254cdf6ec208)\n[![Coverage Status](https://coveralls.io/repos/phiamo/MopaBootstrapBundle/badge.svg)](https://coveralls.io/r/phiamo/MopaBootstrapBundle)\n\nMopaBootstrapBundle is a collection of code to integrate twitter's bootstrap\n(http://twitter.github.com/bootstrap/) as easy as possible into your symfony\n(http://www.symfony.com) Project.\n\nTo use MopaBootstrapBundle and Twitter's Bootstrap 3 in your project add it via [composer](Resources/doc/install/1-getting-started.md)\n\nVersions and dependencies\n-------------------------\n\n| MopaBootstrapBundle    | Bootstrap | Symfony                  | PHP            |\n|------------------------| --------- | ------------------------ | -------------- |\n| [**3.5**] (**master**) | ^3.0      | ^4.4 \\|\\| ^5.1 \\|\\| ^6.1 | ^7.2 \\|\\| ^8.0 |\n\n\n\nUpdates\n-------\n\n*New in 3.1*: The way `horizontal` works has been slightly altered due to a change in Symfony forms. This may or may\nnot affect some behavior of your existing forms. ALL root form elements, whether they have a parent form or not will\nstart with `horizontal` === `true` (or whatever value you set in the config). For the most part this shouldn't affect many users.\n\n`horizontal` will also correctly pass itself down to collection types (and all child forms). So if your collection is horizontal,\nso will the collection items. If you want your collection items only to be inline, then you can pass these options to your collection:\n\n```php\narray(\n    'entry_options' =\u003e array('horizontal' =\u003e false), //   2.8+\n    'options' =\u003e array('horizontal' =\u003e false),       // \u003c 2.8\n)\n```\n\n`horizontal_wrap_children` has been removed, as this can be solved using the above options.\n\n\nBranches\n--------\n\nTo use this bundle with bootstrap 3 use the latest release:\n\n```sh\ncomposer require networking/bootstrap-bundle twbs/bootstrap\n```\n\nOr config via composer.json\n\nFor LESS:\n\n``` json\n{\n    \"require\": {\n        \"networking/bootstrap-bundle\": \"~3.0\",\n        \"twbs/bootstrap\": \"~3.3.0\"\n    }\n}\n```\n\nFor SASS:\n\n``` json\n{\n    \"require\": {\n        \"networking/bootstrap-bundle\": \"~3.0\",\n        \"twbs/bootstrap-sass\": \"~3.3.0\"\n    }\n}\n```\n\nIf you wish to use the current master branch, then use the following:\n\n\n```sh\ncomposer require networking/bootstrap-bundle:dev-master twbs/bootstrap:dev-master\n```\n\nFor bootstrap 2 use the v2.3.x branch:\n\n```sh\ncomposer require networking/bootstrap-bundle:2.3.x-dev twbs/bootstrap:2.3.2\n```\n\nTo understand which versions are currently required have a look into `BRANCHES.md`\n\nDocumentation\n-------------\n\nThe bulk of the documentation is stored in the [Resources/doc](Resources/doc) folder in this bundle\nIn any case, if something is not working as expected after a update:\n\n* [READ the CHANGELOG!](https://github.com/phiamo/MopaBootstrapBundle/blob/master/CHANGELOG.md)\n\nLive Show\n---------\n\nTo see the bundle, its capabilities and some more doc just have a look on\n\n[MopaBootstrapBundle Live](http://bootstrap.mohrenweiserpartner.de)\n\nAdditional Resources:\n\n*  [MopaBootstrapSandboxBundle](http://github.com/phiamo/MopaBootstrapSandboxBundle) - Seperate live docs from code\n*  [symfony-bootstrap](https://github.com/phiamo/symfony-bootstrap) is also available\n\nInstallation\n------------\n\nInstallation instructions are located in the\n\n* [master documentation](Resources/doc/install/1-getting-started.md)\n\nIncluded Features\n-----------------\n\n* Bootstrap Version detection via Composer Bridge\n* Twig Extensions and templates for use with symfony2 Form component\n  * control your form either via the form builder or the template engine\n  * control nearly every bootstrap2 form feature\n  * javascript and twig blocks for dynamic collections\n* A generic Navbar class to generate your Navbar outside the template\n  * helpers for dropdowns, seperators, etc.\n* A generic Tab class to Manage bootstrap tabbing\n* Twig templates for KnpPaginatorBundle (https://github.com/knplabs/KnpPaginatorBundle)\n* Twig templates for CraueFormFlowBundle (https://github.com/craue/CraueFormFlowBundle)\n* Twig template for KnpMenuBundle (https://github.com/KnpLabs/KnpMenuBundle)\n  * icon support on menu links\n\nTranslations\n------------\nIf you use [KnpPaginatorBundle](https://github.com/KnpLabs/KnpPaginatorBundle) with MopaBootstrapBundle, you can translate labels to your language.\nTo do this add new file\n\n```sh\nResources/translations/pagination.[YOUR LOCALE CODE].yml\n```\n\nAs example you have there Polish translation.\n\nVersioning\n----------\nWe aim to follow [semantic versioning](http://semver.org) with our releases.\n\nContribute\n----------\nIf you want to contribute your code to MopaBootstrapBundle please be sure that your PR's\nare valid to Symfony2.1 Coding Standards. You can automatically fix your code for that\nwith [PHP-CS-Fixer](http://cs.sensiolabs.org) tool.\n\nYou can see who already contributed to this project on [Contributors](https://github.com/phiamo/MopaBootstrapBundle/contributors) page\n\nLicense\n-------\n\nThis bundle is under the MIT license. For more information, see the complete [LICENSE](Resources/meta/LICENSE) file in the bundle.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetworking%2Fbootstrap-bundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnetworking%2Fbootstrap-bundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetworking%2Fbootstrap-bundle/lists"}