{"id":16673056,"url":"https://github.com/lasserafn/laravel-pipedrive","last_synced_at":"2025-04-09T20:06:05.243Z","repository":{"id":57012664,"uuid":"74030206","full_name":"LasseRafn/laravel-pipedrive","owner":"LasseRafn","description":"A pipedrive integration for Laravel","archived":false,"fork":false,"pushed_at":"2019-08-22T01:36:05.000Z","size":41,"stargazers_count":2,"open_issues_count":0,"forks_count":8,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-09T20:05:58.592Z","etag":null,"topics":["api","api-wrapper","laravel","pipedrive"],"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/LasseRafn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-11-17T13:37:43.000Z","updated_at":"2022-06-10T21:40:51.000Z","dependencies_parsed_at":"2022-08-21T15:10:07.794Z","dependency_job_id":null,"html_url":"https://github.com/LasseRafn/laravel-pipedrive","commit_stats":null,"previous_names":[],"tags_count":47,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LasseRafn%2Flaravel-pipedrive","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LasseRafn%2Flaravel-pipedrive/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LasseRafn%2Flaravel-pipedrive/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LasseRafn%2Flaravel-pipedrive/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LasseRafn","download_url":"https://codeload.github.com/LasseRafn/laravel-pipedrive/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248103871,"owners_count":21048245,"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":["api","api-wrapper","laravel","pipedrive"],"created_at":"2024-10-12T12:24:21.704Z","updated_at":"2025-04-09T20:06:05.212Z","avatar_url":"https://github.com/LasseRafn.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Laravel Pipedrive API wrapper \n\n\u003cp align=\"center\"\u003e \n\u003ca href=\"https://packagist.org/packages/LasseRafn/laravel-pipedrive\"\u003e\u003cimg src=\"https://img.shields.io/packagist/dt/LasseRafn/laravel-pipedrive.svg?style=flat-square\" alt=\"Total Downloads\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/LasseRafn/laravel-pipedrive\"\u003e\u003cimg src=\"https://img.shields.io/packagist/v/LasseRafn/laravel-pipedrive.svg?style=flat-square\" alt=\"Latest Stable Version\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/LasseRafn/laravel-pipedrive\"\u003e\u003cimg src=\"https://img.shields.io/packagist/l/LasseRafn/laravel-pipedrive.svg?style=flat-square\" alt=\"License\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## Installation\n\n1. Require using composer\n\n``` bash\ncomposer require lasserafn/laravel-pipedrive\n```\n\n2. (For laravel **5.4 and below**) Add the PipedriveServiceProvider to your ````config/app.php```` providers array.\n\n``` php\n'providers' =\u003e [\n    \\LasseRafn\\Pipedrive\\PipedriveServiceProvider::class,\n]\n```\n\n3. Publish config file.\n\n``` bash\nphp artisan vendor:publish --provider \"LasseRafn\\Pipedrive\\PipedriveServiceProvider\"\n```\n\n## Usage\n\n### Create Pipedrive Instance\n\n``` php\n$pipedrive = new \\LasseRafn\\Pipedrive\\Pipedrive($APIKEY); // or set the api key in the config/pipedrive.php file.\n```\n\nTo find your API key you must login to Pipedrive and navigate to Settings -\u003e Personal -\u003e Api (/settings#api)\n\n### Get all Persons\n\n``` php\n$pipedrive-\u003epersons()-\u003eall(); // Returns a collection of Person models.\n```\n\n### Find Person by ID\n\n``` php\n$pipedrive-\u003epersons()-\u003efind(1); // Returns a Person model.\n```\n\n### Get a list of Activities that are not done\n\nFilters consist of an array of arrays. The first parameter is included fields, leave it at `null` to keep the default.\n\n``` php\n$pipedrive-\u003eactivities()-\u003eall(null, [ [ 'done' =\u003e 0 ] ]);\n```\n\n(Later versions will switch to a single array key =\u003e value).\n\n## Supported endpoints\n\n... Todo\n\n## Testing\n\n... Todo\n\n## [Contributors](https://github.com/LasseRafn/laravel-pipedrive/graphs/contributors)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flasserafn%2Flaravel-pipedrive","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flasserafn%2Flaravel-pipedrive","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flasserafn%2Flaravel-pipedrive/lists"}