{"id":15016894,"url":"https://github.com/grafiteinc/forms","last_synced_at":"2025-04-04T14:07:01.194Z","repository":{"id":56983388,"uuid":"63625678","full_name":"GrafiteInc/Forms","owner":"GrafiteInc","description":"Form Classes for Laravel - letting you generate HTML forms from PHP Classes","archived":false,"fork":false,"pushed_at":"2025-01-21T04:11:18.000Z","size":1540,"stargazers_count":36,"open_issues_count":2,"forks_count":25,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-04T14:06:56.123Z","etag":null,"topics":["html-forms","laravel","livewire"],"latest_commit_sha":null,"homepage":"https://docs.grafite.ca/utilities/forms/","language":"PHP","has_issues":true,"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/GrafiteInc.png","metadata":{"files":{"readme":"README.md","changelog":"changelog.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","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":"2016-07-18T18:05:09.000Z","updated_at":"2025-02-17T21:27:19.000Z","dependencies_parsed_at":"2024-01-29T16:30:53.534Z","dependency_job_id":"7e37d314-07d1-48e0-bbb2-abe87c5f770e","html_url":"https://github.com/GrafiteInc/Forms","commit_stats":{"total_commits":869,"total_committers":11,"mean_commits":79.0,"dds":"0.027617951668584606","last_synced_commit":"28c12d2c536822ed828723925b2b7bb6aa1274ed"},"previous_names":[],"tags_count":241,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GrafiteInc%2FForms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GrafiteInc%2FForms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GrafiteInc%2FForms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GrafiteInc%2FForms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GrafiteInc","download_url":"https://codeload.github.com/GrafiteInc/Forms/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247190250,"owners_count":20898702,"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":["html-forms","laravel","livewire"],"created_at":"2024-09-24T19:49:32.084Z","updated_at":"2025-04-04T14:07:01.165Z","avatar_url":"https://github.com/GrafiteInc.png","language":"PHP","readme":"![Grafite Forms](GrafiteForms-banner.png)\n\n**Forms** - An amazing Forms component for Laravel.\n\n[![Build Status](https://github.com/GrafiteInc/Forms/workflows/PHP%20Package%20Tests/badge.svg?branch=main)](https://github.com/GrafiteInc/Forms/actions?query=workflow%3A%22PHP+Package+Tests%22)\n[![Maintainability](https://api.codeclimate.com/v1/badges/5c99d7022684ac3a220c/maintainability)](https://codeclimate.com/github/GrafiteInc/Forms/maintainability)\n[![Packagist](https://img.shields.io/packagist/dt/grafite/forms.svg)](https://packagist.org/packages/grafite/forms)\n[![license](https://img.shields.io/github/license/mashape/apistatus.svg)](https://packagist.org/packages/grafite/forms)\n\nThe Forms package lets you generate forms as well as fields with standard make commands. Inside your forms for models you can specify the fields that need to be generated and then simply pass the form to the view. No more writing html forms, error handling etc. It can handle Eloquent relationships and easily work with ajax requests for more dynamic form submissions.\n\n##### Author(s):\n* [Matt Lantz](https://github.com/mlantz) ([@mattylantz](http://twitter.com/mattylantz), mattlantz at gmail dot com)\n\n## Requirements\n\n1. PHP 8.2+\n2. OpenSSL\n\n## Compatibility and Support\n\n| Laravel Version | Package Tag | Supported |\n|-----------------|-------------|-----------|\n| ^11.x | 7.x | yes |\n| ^7.x - 11.x | 6.x | no |\n| ^7.x - ^8.x | 5.x | no |\n| ^7.x - ^8.x | 4.x | no |\n| ^7.x | 3.x | no |\n| ^5.8.x - 7.x | 2.x | no |\n| 5.4.x - 5.8.x | 1.3.x | no |\n| 5.4.x | 1.1.x | no |\n| 5.3.x | 1.0.x | no |\n\n### Installation\n\nStart a new Laravel project:\n```php\ncomposer create-project laravel/laravel your-project-name\n```\n\nThen run the following to add Forms\n```php\ncomposer require \"grafite/forms\"\n```\n\nTime to publish those assets!\n```php\nphp artisan vendor:publish --provider=\"Grafite\\Forms\\FormsProvider\"\n```\n\n## Documentation\n\n[https://docs.grafite.ca/utilities/forms](https://docs.grafite.ca/utilities/forms)\n\n## Upgrading from 3.x to 4.x (Renaming)\nThe package was renamed in version 3 to 4. This means that the following would need to be changed on your code base:\n\n`form-maker.php` -\u003e `forms.php`\n\n`Grafite\\FormMaker` -\u003e `Grafite\\Forms`\n\n`@formMaker` -\u003e `@forms`\n\n`\u003cx-fm\u003e\u003c/x-fm\u003e` -\u003e `\u003cx-f\u003e\u003c/x-f\u003e`\n\n`\u003cx-fm-action\u003e\u003c/x-fm-action\u003e` -\u003e `\u003cx-f-action\u003e\u003c/x-f-action\u003e`\n\n`\u003cx-fm-delete\u003e\u003c/x-fm-delete\u003e` -\u003e `\u003cx-f-delete\u003e\u003c/x-f-delete\u003e`\n\n`\u003cx-fm-search\u003e\u003c/x-fm-search\u003e` -\u003e `\u003cx-f-search\u003e\u003c/x-f-search\u003e`\n\n## Asset Sources for CSP\njs.hcaptcha.com\ncdn.jsdelivr.net\n\n## License\nForms is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)\n\n### Bug Reporting and Feature Requests\nPlease add as many details as possible regarding submission of issues and feature requests\n\n### Disclaimer\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrafiteinc%2Fforms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgrafiteinc%2Fforms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrafiteinc%2Fforms/lists"}