{"id":16599865,"url":"https://github.com/vmitchell85/things","last_synced_at":"2026-04-18T22:05:10.125Z","repository":{"id":62545072,"uuid":"354672916","full_name":"vmitchell85/things","owner":"vmitchell85","description":"A Things 3 package for Laravel","archived":false,"fork":false,"pushed_at":"2021-04-05T02:14:01.000Z","size":21,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-17T06:45:43.779Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vmitchell85.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null},"funding":{"github":"vmitchell85"}},"created_at":"2021-04-05T00:09:48.000Z","updated_at":"2021-04-05T02:14:03.000Z","dependencies_parsed_at":"2022-11-02T22:01:10.227Z","dependency_job_id":null,"html_url":"https://github.com/vmitchell85/things","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"spatie/package-skeleton-laravel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vmitchell85%2Fthings","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vmitchell85%2Fthings/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vmitchell85%2Fthings/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vmitchell85%2Fthings/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vmitchell85","download_url":"https://codeload.github.com/vmitchell85/things/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242538984,"owners_count":20145882,"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-12T00:12:50.051Z","updated_at":"2026-04-18T22:05:10.073Z","avatar_url":"https://github.com/vmitchell85.png","language":"PHP","funding_links":["https://github.com/sponsors/vmitchell85"],"categories":[],"sub_categories":[],"readme":"# A Things 3 package for Laravel\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/vmitchell85/things.svg?style=flat-square)](https://packagist.org/packages/vmitchell85/things)\n[![GitHub Tests Action Status](https://img.shields.io/github/workflow/status/vmitchell85/things/run-tests?label=tests)](https://github.com/vmitchell85/things/actions?query=workflow%3ATests+branch%3Amaster)\n[![GitHub Code Style Action Status](https://img.shields.io/github/workflow/status/vmitchell85/things/Check%20\u0026%20fix%20styling?label=code%20style)](https://github.com/vmitchell85/things/actions?query=workflow%3A\"Check+%26+fix+styling\"+branch%3Amaster)\n[![Total Downloads](https://img.shields.io/packagist/dt/vmitchell85/things.svg?style=flat-square)](https://packagist.org/packages/vmitchell85/things)\n\nThis package provides several models for interacting with a Things 3 SQLite database.\n\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require vmitchell85/things\n```\n\nAdd a config settings with the path to your Things 3 SQLite database:\n\n```ini\nTHINGS_PATH=\"/Users/{YOUR_USER_NAME_HERE}/Library/Group Containers/JLMPQHK86H.com.culturedcode.ThingsMac/Things Database.thingsdatabase/main.sqlite\"\n```\n\n\u003e **Note:** The path listed above is the default as of this writing. Please replace `{YOUR_USER_NAME_HERE}` with the name of the User folder on your system\n\n## Usage\n\nThe following models are available with their available relationships:\n- `Vmitchell85\\Things\\Task::class`\n    - `rProjects()` - `Vmitchell85\\Things\\Project::class`\n    - `rArea()` - `Vmitchell85\\Things\\Area::class`\n    - `rChecklistItems()` - `Vmitchell85\\Things\\ChecklistItem::class`\n    - `rTags()` - `Vmitchell85\\Things\\Tag::class`\n- `Vmitchell85\\Things\\Project::class`\n    - `rTasks()` - `Vmitchell85\\Things\\Task::class`\n    - `rArea()` - `Vmitchell85\\Things\\Area::class`\n- `Vmitchell85\\Things\\Area::class`\n    - `rTasks()` - `Vmitchell85\\Things\\Task::class`\n    - `rProjects()` - `Vmitchell85\\Things\\Project::class`\n    - `rTags()` - `Vmitchell85\\Things\\Tag::class`\n- `Vmitchell85\\Things\\Tag::class`\n    - `rTasks()` - `Vmitchell85\\Things\\Task::class`\n    - `rAreas()` - `Vmitchell85\\Things\\Area::class`\n- `Vmitchell85\\Things\\ChecklistItem::class`\n    - `rTask()` - `Vmitchell85\\Things\\Task::class`\n\nMore details can be found in the [Wiki](https://github.com/vmitchell85/things/wiki) (*Work In Progress*)\n\n\u003e **Note:** Tables in the Things 3 database, in some instances, have column names that are the same as the desired relation name. To simplify and attempt to prevent confusion it was decided to prefix all relations with `r`. While this \n\n## Testing\n\n```bash\ncomposer test\n```\n\n## Credits\n\n- [Things 3 CLI](https://github.com/alexanderwillner/things.sh)\n- [Vince Mitchell](https://github.com/vmitchell85)\n- [All Contributors](../../contributors)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvmitchell85%2Fthings","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvmitchell85%2Fthings","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvmitchell85%2Fthings/lists"}