gianarb / php-gcm
此包已被弃用且不再维护。未建议替代包。
使用 Google Cloud Message 服务从您的应用程序发送推送通知
1.0.0
2015-06-24 22:36 UTC
Requires
- guzzlehttp/guzzle: ^6.0
Requires (Dev)
- phpunit/phpunit: ^4.7
This package is auto-updated.
Last update: 2021-03-15 09:16:10 UTC
README
PHP SDK,用于使用 Google Cloud Manager 推送 Android 通知
安装
composer install gianarb/php-gcm
入门
$client = new GuzzleHttp\Client(); $publisher = new Publisher($client, "googleSendKeyID"); $publisher->push(["firstDeviceToken"], [ 'message' => '', 'title' => '', 'subtitle' => '', 'tickerText' => '', 'vibrate' => 1, 'sound' => 1, 'largeIcon' => 'large_icon', 'smallIcon' => 'small_icon' ]);
测试
vendor/bin/phpunit