{"id":23114026,"url":"https://github.com/baorv/l5-getresponse","last_synced_at":"2026-05-17T17:04:09.297Z","repository":{"id":62491732,"uuid":"139102974","full_name":"baorv/l5-getresponse","owner":"baorv","description":"GetResponse API Integration for Laravel 5.*","archived":false,"fork":false,"pushed_at":"2019-01-29T03:58:50.000Z","size":28,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-15T14:23:33.272Z","etag":null,"topics":["api","getresponse","integration","laravel"],"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/baorv.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}},"created_at":"2018-06-29T05:02:43.000Z","updated_at":"2019-01-29T03:57:59.000Z","dependencies_parsed_at":"2022-11-02T09:31:11.688Z","dependency_job_id":null,"html_url":"https://github.com/baorv/l5-getresponse","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/baorv/l5-getresponse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baorv%2Fl5-getresponse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baorv%2Fl5-getresponse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baorv%2Fl5-getresponse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baorv%2Fl5-getresponse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/baorv","download_url":"https://codeload.github.com/baorv/l5-getresponse/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/baorv%2Fl5-getresponse/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273047126,"owners_count":25036296,"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","status":"online","status_checked_at":"2025-08-31T02:00:09.071Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["api","getresponse","integration","laravel"],"created_at":"2024-12-17T03:18:23.911Z","updated_at":"2026-05-17T17:04:04.271Z","avatar_url":"https://github.com/baorv.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# l5-getresponse\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://travis-ci.org/roanvanbao/l5-getresponse\"\u003e\u003cimg src=\"https://travis-ci.org/roanvanbao/l5-getresponse.svg?branch=master\" alt=\"Build Status\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/baorv/l5-getresponse\"\u003e\u003cimg src=\"https://poser.pugx.org/baorv/l5-getresponse/license.svg\" alt=\"License\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\nGetResponse API Integration for Laravel 5.*\n\n## Installation\n\nYou can install package \"baorv/l5-getresponse\" by command\n\n```bash\ncomposer require \"baorv/l5-getresponse\":\"dev-master\"\n```\n\nOr other way, add the package to require lists in composer.json and run composer update to install the package.\n\n```yaml\n...\n    \"require\": {\n        ...\n        \"baorv/l5-getresponse\":\"dev-master\"\n        ...\n    }\n...\n```\n\nAfter installing the package, if you use Laravel 5.5 or higher, you can skip this step.\nAdd service provider and facade to configuration file **config/app.php**\n\n```php\nreturn [\n    ...\n    'providers' =\u003e [\n        ...\n        '\\Secomapp\\GetResponse\\GetResponseServiceProvider',\n        ...\n    ],\n    'aliases' =\u003e [\n        ...\n        '\\Secomapp\\GetResponse\\Facades\\GetResponse',\n        ...\n    ]\n    ...\n];\n```\n\n## Configuration\n\nYou can publish config file from the package to your configuration path by command\n\n```php\n./artisan vendor:publish --provider=\"Secomapp\\\\GetResponse\\\\GetResponseServiceProvider\"\n```\n\nSome configuration you can set up from .env\n```dotenv\nGETRESPONSE_APIURL=https://api.getresponse.com/v3 #Optional\nGETRESPONSE_APIKEY=\n```\n\n## Usage\n\nIn everywhere, you can use to work with GetResponse\n```php\n\nuse Secomapp\\GetResponse\\Facades\\GetResponse;\n\nGetResponse::accounts();\nGetResponse::getCampaigns();\nGetResponse::getCampaign($campaign_id);\n```\n\n## Helpers\n\nAnother way to work with GetResponse\n\n```php\ngetresponse_accounts();\ngetresponse_get_campaigns();\ngetresponse_get_campaign();\n```\n\n## Contributing\n\nIf you have any idea or update for library, please create [new pull request](https://github.com/roanvanbao/l5-getresponse/pulls)\n\n## Issues\n\nWhen you meet any issue, please create [new issue](https://github.com/roanvanbao/l5-getresponse/issues)\n\n## Todo\n\n* Add test","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbaorv%2Fl5-getresponse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbaorv%2Fl5-getresponse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbaorv%2Fl5-getresponse/lists"}