{"id":29817072,"url":"https://github.com/cybercog/php-pushwoosh","last_synced_at":"2025-09-15T21:02:07.876Z","repository":{"id":56960672,"uuid":"301399093","full_name":"cybercog/php-pushwoosh","owner":"cybercog","description":"A PHP Library to easily send PUSH notifications with the Pushwoosh REST Web Services.","archived":false,"fork":false,"pushed_at":"2024-12-11T14:58:10.000Z","size":1892,"stargazers_count":5,"open_issues_count":2,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-20T22:37:49.028Z","etag":null,"topics":["notification-android","notification-ios","notifications","php","push","push-notifications","pushwoosh"],"latest_commit_sha":null,"homepage":"http://gomoob.github.io/php-pushwoosh","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/cybercog.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-10-05T12:20:37.000Z","updated_at":"2025-02-06T11:51:16.000Z","dependencies_parsed_at":"2024-12-11T15:36:15.335Z","dependency_job_id":"07f4aa1a-4ce9-4050-bab4-369d2ba85c00","html_url":"https://github.com/cybercog/php-pushwoosh","commit_stats":{"total_commits":264,"total_committers":16,"mean_commits":16.5,"dds":"0.21590909090909094","last_synced_commit":"4b7d27227585aad911dec8ab10c7501f8d07b009"},"previous_names":[],"tags_count":38,"template":false,"template_full_name":null,"purl":"pkg:github/cybercog/php-pushwoosh","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cybercog%2Fphp-pushwoosh","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cybercog%2Fphp-pushwoosh/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cybercog%2Fphp-pushwoosh/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cybercog%2Fphp-pushwoosh/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cybercog","download_url":"https://codeload.github.com/cybercog/php-pushwoosh/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cybercog%2Fphp-pushwoosh/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267578003,"owners_count":24110351,"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-07-28T02:00:09.689Z","response_time":68,"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":["notification-android","notification-ios","notifications","php","push","push-notifications","pushwoosh"],"created_at":"2025-07-28T20:12:10.175Z","updated_at":"2025-09-15T21:02:02.786Z","avatar_url":"https://github.com/cybercog.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PHP Pushwoosh\n\nA PHP Library to easily send PUSH notifications with the Pushwoosh REST Web Services.\n\nForked [gomoob/php-pushwoosh](https://github.com/gomoob/php-pushwoosh) because original project stalled.\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://github.com/cybercog/php-pushwoosh/releases\"\u003e\u003cimg src=\"https://img.shields.io/github/release/cybercog/php-pushwoosh.svg?style=flat-square\" alt=\"Releases\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/cybercog/php-pushwoosh/actions/workflows/tests.yml\"\u003e\u003cimg src=\"https://img.shields.io/github/actions/workflow/status/cybercog/php-pushwoosh/tests.yml?style=flat-square\" alt=\"Build\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/cybercog/php-pushwoosh/blob/master/LICENSE\"\u003e\u003cimg src=\"https://img.shields.io/github/license/cybercog/php-pushwoosh.svg?style=flat-square\" alt=\"License\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## Installation\n\nPull in the package through Composer.\n\n```shell script\ncomposer require cybercog/php-pushwoosh\n```\n\n## Usage\n\nSample of creating and sending the Pushwoosh message.\n\n```php\n// Create a Pushwoosh client\n$pushwoosh = Pushwoosh::create()\n    -\u003esetApplication('XXXX-XXX')\n    -\u003esetAuth('xxxxxxxx');\n\n// Create a request for the '/createMessage' Web Service\n$request = CreateMessageRequest::create()\n    -\u003eaddNotification(Notification::create()-\u003esetContent('Hello Jean !'));\n\n// Call the REST Web Service\n$response = $pushwoosh-\u003ecreateMessage($request);\n\n// Check if it's ok\nif ($response-\u003eisOk()) {\n    print 'Great, my message has been sent !';\n} else {\n    print 'Oops, the sent failed :-('; \n    print 'Status code : ' . $response-\u003egetStatusCode();\n    print 'Status message : ' . $response-\u003egetStatusMessage();\n}\n```\n\n## License\n\n- `PHP Pushwoosh` package is open-sourced software licensed under the [MIT license](LICENSE) by [Anton Komarev].\n\n## About CyberCog\n\n[CyberCog] is a Social Unity of enthusiasts. Research the best solutions in product \u0026 software development is our passion.\n\n- [Follow us on Twitter](https://twitter.com/cybercog)\n\n\u003ca href=\"https://cybercog.su\"\u003e\u003cimg src=\"https://cloud.githubusercontent.com/assets/1849174/18418932/e9edb390-7860-11e6-8a43-aa3fad524664.png\" alt=\"CyberCog\"\u003e\u003c/a\u003e\n\n[Anton Komarev]: https://komarev.com\n[CyberCog]: https://cybercog.su\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcybercog%2Fphp-pushwoosh","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcybercog%2Fphp-pushwoosh","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcybercog%2Fphp-pushwoosh/lists"}