{"id":36993769,"url":"https://github.com/collinped/laravel-rest-hooks","last_synced_at":"2026-01-13T23:45:58.936Z","repository":{"id":56956650,"uuid":"291779167","full_name":"collinped/laravel-rest-hooks","owner":"collinped","description":null,"archived":false,"fork":false,"pushed_at":"2023-01-11T05:39:20.000Z","size":40,"stargazers_count":8,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-11T14:42:56.391Z","etag":null,"topics":["laravel","rest-hooks","zapier"],"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/collinped.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":"collinped","custom":"https://www.collinped.com"}},"created_at":"2020-08-31T17:21:51.000Z","updated_at":"2024-07-24T10:19:29.000Z","dependencies_parsed_at":"2023-02-09T01:50:14.502Z","dependency_job_id":null,"html_url":"https://github.com/collinped/laravel-rest-hooks","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":"spatie/package-skeleton-laravel","purl":"pkg:github/collinped/laravel-rest-hooks","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/collinped%2Flaravel-rest-hooks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/collinped%2Flaravel-rest-hooks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/collinped%2Flaravel-rest-hooks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/collinped%2Flaravel-rest-hooks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/collinped","download_url":"https://codeload.github.com/collinped/laravel-rest-hooks/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/collinped%2Flaravel-rest-hooks/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28405302,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T21:51:37.118Z","status":"ssl_error","status_checked_at":"2026-01-13T21:45:14.585Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["laravel","rest-hooks","zapier"],"created_at":"2026-01-13T23:45:58.866Z","updated_at":"2026-01-13T23:45:58.928Z","avatar_url":"https://github.com/collinped.png","language":"PHP","funding_links":["https://github.com/sponsors/collinped","https://www.collinped.com"],"categories":[],"sub_categories":[],"readme":"# laravel-rest-hooks\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/collinped/laravel-rest-hooks.svg?style=flat-square)](https://packagist.org/packages/collinped/laravel-rest-hooks)\n[![GitHub Tests Action Status](https://img.shields.io/github/workflow/status/collinped/laravel-rest-hooks/Tests?style=flat-square\u0026label=tests)](https://github.com/collinped/laravel-rest-hooks/actions?query=workflow%3ATests+branch%3Amaster)\n[![Total Downloads](https://img.shields.io/packagist/dt/collinped/laravel-rest-hooks.svg?style=flat-square)](https://packagist.org/packages/collinped/laravel-rest-hooks)\n![](https://img.shields.io/packagist/php-v/collinped/laravel-rest-hooks.svg?style=flat-square)\n[![License](https://img.shields.io/github/license/collinped/laravel-rest-hooks.svg?style=flat-square\u0026label=license)](LICENSE.md)\n\nPackage for managing [Rest Hooks](https://resthooks.org) in Laravel for use with platforms such as [Zapier](https://zapier.com/). Built on top of [spatie/laravel-webhook-server](https://github.com/spatie/laravel-webhook-server).\n\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require collinped/laravel-rest-hooks\n```\n\nYou can publish and run the migrations with:\n\n```bash\nphp artisan vendor:publish --provider=\"Collinped\\LaravelRestHooks\\Providers\\LaravelRestHooksServiceProvider\" --tag=\"migrations\"\nphp artisan migrate\n```\n\nYou can publish the config file with:\n```bash\nphp artisan vendor:publish --provider=\"Collinped\\LaravelRestHooks\\Providers\\LaravelRestHooksServiceProvider\" --tag=\"config\"\n```\n\nThis is the contents of the published config file:\n\n```php\nreturn [\n];\n```\n\n## Usage\n\n``` php\nuse Collinped\\LaravelRestHooks\\RestHook;\n\n$restHook = RestHook::forUser(auth()-\u003euser()-\u003eid())\u003efind($id);\n```\n\n## Testing\n\n``` bash\ncomposer test\n```\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Contributing\n\nPlease see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.\n\n## Security\n\nIf you discover any security related issues, please email me@collinped.com instead of using the issue tracker.\n\n## Credits\n\n- [Collin Pedersen](https://github.com/collinped)\n- [Spatie](https://github.com/spatie) - [spatie/laravel-webhook-server](https://github.com/spatie/laravel-webhook-server) is used in the background for processing web hooks. \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%2Fcollinped%2Flaravel-rest-hooks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcollinped%2Flaravel-rest-hooks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcollinped%2Flaravel-rest-hooks/lists"}