{"id":16409570,"url":"https://github.com/pointybeard/symext-field-unique-input","last_synced_at":"2025-06-28T22:34:59.075Z","repository":{"id":55495837,"uuid":"87916","full_name":"pointybeard/symext-field-unique-input","owner":"pointybeard","description":"Basic Symphony text input field that forces uniqueness","archived":false,"fork":false,"pushed_at":"2024-11-06T18:43:40.000Z","size":64,"stargazers_count":6,"open_issues_count":1,"forks_count":6,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-05T12:40:46.519Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/pointybeard.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2008-12-09T23:28:14.000Z","updated_at":"2020-12-27T05:21:41.000Z","dependencies_parsed_at":"2025-02-11T22:31:59.051Z","dependency_job_id":"94e4eae0-d145-43a2-b76a-dc4d13bf4c89","html_url":"https://github.com/pointybeard/symext-field-unique-input","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/pointybeard/symext-field-unique-input","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pointybeard%2Fsymext-field-unique-input","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pointybeard%2Fsymext-field-unique-input/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pointybeard%2Fsymext-field-unique-input/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pointybeard%2Fsymext-field-unique-input/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pointybeard","download_url":"https://codeload.github.com/pointybeard/symext-field-unique-input/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pointybeard%2Fsymext-field-unique-input/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262507694,"owners_count":23321970,"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-10-11T06:20:27.483Z","updated_at":"2025-06-28T22:34:59.037Z","avatar_url":"https://github.com/pointybeard.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Unique Text Input Field for Symphony CMS\n\nA field for [Symphony CMS][ext-symphony-cms] that enforces uniqueness\n\n-   [Installation](#installation)\n-   [Requirements](#dependencies)\n-   [Dependencies](#dependencies)\n-   [Basic Usage](#basic-usage)\n-   [Support](#support)\n-   [Contributing](#contributing)\n-   [License](#license)\n\n## Installation\n\nClone the latest version to your `/extensions` folder and run composer to install required packaged with\n\n### Manually (git + composer)\n```bash\n$ git clone https://github.com/pointybeard/symext-field-unique-input.git field_uniquetextinput\n$ composer update -vv --profile -d ./field_uniquetextinput\n```\nAfter finishing the steps above, enable \"Section Model Builder\" though the administration interface or, if using [Orchestra][ext-orchestra], with `bin/extension enable field_uniquetextinput`.\n\n### With Orchestra\n\n1. Add the following extension defintion to your `.orchestra/build.json` file in the `\"extensions\"` block:\n\n```json\n{\n    \"name\": \"field_uniquetextinput\",\n    \"repository\": {\n        \"url\": \"https://github.com/pointybeard/symext-field-unique-input.git\"\n    }\n}\n```\n\n2. Run the following command to rebuild your Extensions\n\n```bash\n$ bin/orchestra build \\\n    --skip-import-sections \\\n    --database-skip-import-data \\\n    --database-skip-import-structure \\\n    --skip-create-author \\\n    --skip-seeders \\\n    --skip-git-reset \\\n    --skip-composer \\\n    --skip-postbuild\n```\n\n# Requirements\n\n- This extension works with PHP 7.4 or above.\n\n# Dependencies\n\nThis extension depends on the following Composer libraries:\n\n-   [PHP Helpers][dep-helpers]\n-   [Symphony CMS: Extended Base Class Library][dep-symphony-extended]\n\n## Usage\n\nEnable this field via the interface and add it to your sections like any other field.\n\nThis field behaves identically to a standard text input field, however, it enforces uniqueness of the handle. Note, output in Data Sources cannot be grouped by a Unique Text Input field.\n\nThere are two (2) modes which allow the choice between throwing an error, e.g. \"This must be unique\", or maintain uniqueness by automatically by appending a number to the handle value, eg. `my-entry-handle-2`.\n\n## Support\n\nIf you believe you have found a bug, please report it using the [GitHub issue tracker][ext-issues],\nor better yet, fork the library and submit a pull request.\n\n## Contributing\n\nWe encourage you to contribute to this project. Please check out the [Contributing to this project][doc-contributing] documentation for guidelines about how to get involved.\n\n## Author\n-   Alannah Kearney - http://github.com/pointybeard\n-   See also the list of [contributors][ext-contributor] who participated in this project\n\n## License\n\"Unique Text Input Field for Symphony CMS\" is released under the MIT License. See [LICENCE][doc-licence] for details.\n\n[doc-contributing]: https://github.com/pointybeard/symext-field-unique-input/blob/master/CONTRIBUTING.md\n[doc-licence]: http://www.opensource.org/licenses/MIT\n[dep-helpers]: https://github.com/pointybeard/helpers\n[dep-symphony-extended]: https://github.com/pointybeard/symphony-extended\n[ext-issues]: https://github.com/pointybeard/symext-field-unique-input/issues\n[ext-symphony-cms]: http://getsymphony.com\n[ext-orchestra]: https://github.com/pointybeard/orchestra\n[ext-contributor]: https://github.com/pointybeard/symext-field-unique-input/contributors\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpointybeard%2Fsymext-field-unique-input","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpointybeard%2Fsymext-field-unique-input","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpointybeard%2Fsymext-field-unique-input/lists"}