{"id":19858019,"url":"https://github.com/boldare/xsolve-bootstrap-crud-bundle","last_synced_at":"2025-08-08T15:38:25.331Z","repository":{"id":10916796,"uuid":"13216506","full_name":"boldare/xsolve-bootstrap-crud-bundle","owner":"boldare","description":"CRUD Bundle for Symfony2 that uses Twitter Bootstrap","archived":false,"fork":false,"pushed_at":"2014-08-27T13:42:47.000Z","size":258,"stargazers_count":4,"open_issues_count":0,"forks_count":6,"subscribers_count":71,"default_branch":"master","last_synced_at":"2025-04-06T21:09:16.624Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CSS","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/boldare.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":"2013-09-30T13:46:04.000Z","updated_at":"2018-10-08T10:57:20.000Z","dependencies_parsed_at":"2022-09-08T06:30:25.687Z","dependency_job_id":null,"html_url":"https://github.com/boldare/xsolve-bootstrap-crud-bundle","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boldare%2Fxsolve-bootstrap-crud-bundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boldare%2Fxsolve-bootstrap-crud-bundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boldare%2Fxsolve-bootstrap-crud-bundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boldare%2Fxsolve-bootstrap-crud-bundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/boldare","download_url":"https://codeload.github.com/boldare/xsolve-bootstrap-crud-bundle/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251972433,"owners_count":21673602,"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":[],"created_at":"2024-11-12T14:20:49.996Z","updated_at":"2025-05-02T02:30:44.540Z","avatar_url":"https://github.com/boldare.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"XsolveBootstrapCrudBundle\n=================\n\nBy [Piotr Pasich](http://xsolve.pl)\n\n[![SensioLabsInsight](https://insight.sensiolabs.com/projects/6ed75282-7e0a-4fbd-a86a-13fe209e2509/big.png)](https://insight.sensiolabs.com/projects/6ed75282-7e0a-4fbd-a86a-13fe209e2509)\n\n[![knpbundles.com](http://knpbundles.com/xsolve-pl/xsolve-bootstrap-crud-bundle/badge)](http://knpbundles.com/xsolve-pl/xsolve-bootstrap-crud-bundle)\n\n\nAbout\n-----\n\nXsolveBootstrapCrudBundle is for preparing CRUD action from console to [Bootstrap, from Twitter](http://twitter.github.com/bootstrap/).\n\nAlso, there is prepared example layout to make beggining with project faster.\n\n\nInstallation\n------------\n\nFirst you need to add `xsolve-pl/xsolve-bootstrap-crud-bundle` to `composer.json`:\n\n    {\n        \"require\": {\n            \"xsolve-pl/xsolve-bootstrap-crud-bundle\": \"dev-master\"\n    },\n    \"repositories\": [\n        {\n            \"type\": \"package\",\n            \"package\": {\n                \"name\": \"jquery/jquery\",\n                \"version\": \"1.9.1\",\n                \"dist\": {\n                    \"url\": \"http://code.jquery.com/jquery-1.9.1.js\",\n                    \"type\": \"file\"\n                }\n            }\n        }\n    ]\n    }\n\n\nYou can configure your assets inside config.yml file.\nYou should have installed less and node libraries with less for node module (sudo npm -g install less)\n\nassetic:\n    debug:          %kernel.debug%\n    use_controller: false\n    bundles:        [ 'XsolveBootstrapCrudBundle' ]\n    filters:\n        cssrewrite: ~\n        less:\n            node: /usr/local/bin/node\n            node_paths: [/usr/local/lib/node_modules]\n            apply_to: \"\\.less$\"\n\n\nYou also have to add `XsolveBootstrapCrudBundle` and `BcBootstrapBundle` to your `AppKernel.php`:\n\n    // app/AppKernel.php\n    ...\n    class AppKernel extends Kernel\n    {\n        ...\n        public function registerBundles()\n        {\n            $bundles = array(\n                ...\n                new Bc\\Bundle\\BootstrapBundle\\BcBootstrapBundle(),\n                new Xsolve\\BootstrapCrudBundle\\XsolveBootstrapCrudBundle(),\n            );\n            ...\n\n            return $bundles;\n        }\n        ...\n    }\n\nExample layout\n------------\n\nThere is created example layout using twitter bootstrap styles in resources.\nAfter successful installation you can start with prepared example layout based on bootstrap's home page.\n\nTo do this, you need to extend your base layout file in app/Resources/views/base.html.twig by:\n\n```\n    {% extends 'XsolveBootstrapCrudBundle::examplelayout.html.twig' %}\n```\n\nAnd that's it.\n\n\nCRUD generator\n------------\n\nBecause CRUD generator in Symfony framework has own structure and after generating a developer should always change some classes and code inside the code there is created new generator command in command line.\n\nIt works in the same way as the oryginal enerator in Symfony, but generates templates dedicated for twitter bootstrap.\n\n\n```\n    xsolve:doctrine:crud\n    xsolve:generate:crud\n```\n\nLicense\n-------\n\n- The bundle is licensed under the [MIT License](http://opensource.org/licenses/MIT)\n- The CSS and Javascript from the Twitter Bootstrap are licensed under the [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboldare%2Fxsolve-bootstrap-crud-bundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fboldare%2Fxsolve-bootstrap-crud-bundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboldare%2Fxsolve-bootstrap-crud-bundle/lists"}