{"id":21070657,"url":"https://github.com/wisembly/formbuilderbundle","last_synced_at":"2026-04-06T04:31:20.564Z","repository":{"id":1808592,"uuid":"2732706","full_name":"Wisembly/FormBuilderBundle","owner":"Wisembly","description":"Store your custom forms as Doctrine entities","archived":false,"fork":false,"pushed_at":"2012-08-20T09:09:07.000Z","size":289,"stargazers_count":45,"open_issues_count":2,"forks_count":5,"subscribers_count":21,"default_branch":"master","last_synced_at":"2025-05-16T05:37:25.914Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"seanherron/Gov-Webicons","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Wisembly.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}},"created_at":"2011-11-08T09:47:33.000Z","updated_at":"2024-07-02T18:23:12.000Z","dependencies_parsed_at":"2022-07-08T00:18:45.301Z","dependency_job_id":null,"html_url":"https://github.com/Wisembly/FormBuilderBundle","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/Wisembly/FormBuilderBundle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Wisembly%2FFormBuilderBundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Wisembly%2FFormBuilderBundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Wisembly%2FFormBuilderBundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Wisembly%2FFormBuilderBundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Wisembly","download_url":"https://codeload.github.com/Wisembly/FormBuilderBundle/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Wisembly%2FFormBuilderBundle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31459998,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T21:22:52.476Z","status":"online","status_checked_at":"2026-04-06T02:00:07.287Z","response_time":112,"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":[],"created_at":"2024-11-19T18:47:44.954Z","updated_at":"2026-04-06T04:31:20.546Z","avatar_url":"https://github.com/Wisembly.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"### /!\\This bundle has not been updated to Symfony 2.1-RC2+ and is no longer maintained by Balloon/!\\\n\n\nLet your users create dynamic forms and store them in the database.\n\nFeatures:\n\n- Create forms\n- Add fields (register custom fields)\n- Answer to a form\n- View form results\n\n## Requirements :\n For Symfony 2.1-RC1, use 1.1 tag  \n For a Symfony 2.0 compliant version, use 1.0 tag\n \n## Installation (for 2.0 and 2.1-RC1 use, without composer)\n\nClone the project:\n\n```bash\n$ git submodule add -f git://github.com/Balloon/FormBuilderBundle.git vendor/bundles/Balloon/Bundle/FormBuilderBundle\n```\n\nRegister the bundle in `app/AppKernel.php`:\n\n```php\n\u003c?php\n\n    public function registerBundles()\n    {\n        return array(\n            // ..\n            new Balloon\\Bundle\\FormBuilderBundle\\BalloonFormBuilderBundle(),\n            // ..\n        );\n    }\n```\n\nRegister the namespace in your `app/autoload.php`:\n\n```php\n\u003c?php\n\n$loader-\u003eregisterNamespaces(array(\n    // ...\n    'Balloon\\\\Bundle\\\\FormBuilderBundle' =\u003e __DIR__.'/../vendor/bundles',\n    // ...\n));\n```\n\nAdd this section to your `app/config/config.yml` file:\n\n```yaml\nballoon_form_builder:\n    fields:\n        field:\n            label:      ~\n            required:   false\n            max_length: ~\n        choice:\n            label:      ~\n            multiple:   false\n            expanded:   false\n            choices:    {}\n        country:\n            label:      ~\n        language:\n            label:      ~\n        timezone:\n            label:      ~\n        datetime:\n            label:      ~\n        date:\n            label:      ~\n        time:\n            label:      ~\n        checkbox:\n            label:      ~\n```\n\nAdd this section to your `app/config/routing.yml` file:\n\n```yaml\nballoon_form_builder:\n    resource: \"@BalloonFormBuilderBundle/Resources/config/routing.yml\"\n    prefix:   /form\n```\n\nInit assets:\n\n```bash\n$ ./app/console assets:install web --symlink\n```\n\nAnd if you haven't a dedicated virtual host, add this to `app/config/config.yml`:\n\n```yaml\nframwork:\n    templating:\n        assets_base_urls: \"/balloon-form\"\n```\n\nYour done now go to `/app_dev.php/form`\n\n## Screenshots\n\n![list form](https://github.com/Balloon/FormBuilderBundle/raw/master/Resources/doc/list.png)\n\u003cp\u003eList forms\u003c/p\u003e\n\n\n![edit form](https://github.com/Balloon/FormBuilderBundle/raw/master/Resources/doc/edit.png)\n\u003cp\u003eEdit a form\u003c/p\u003e\n\n![answer form](https://github.com/Balloon/FormBuilderBundle/raw/master/Resources/doc/answer.png)\n\u003cp\u003eAnswer to a form\u003c/p\u003e\n\n## Contributors\n\ncreator [gordonslondon](http://github.com/gordonslondon)\nmaintener [guillaumepotier]\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwisembly%2Fformbuilderbundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwisembly%2Fformbuilderbundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwisembly%2Fformbuilderbundle/lists"}