edwinhoksberg/php-fcm
最新稳定版本:v1.2.0
Composer 安装命令:
composer require edwinhoksberg/php-fcm
包简介
A library for sending Firebase cloud messages and managing user topic subscriptions, device groups and devices.
README 文档
README
A PHP library for sending Firebase Cloud Messages and managing user topic subscriptions, device groups and devices.
Installation
Installation with composer:
composer require edwinhoksberg/php-fcm
Quickstart
<?php // Load composer require 'vendor/autoload.php'; // Instantiate the client with the project api_token and sender_id. $client = new \Fcm\FcmClient($apiToken, $senderId); // Instantiate the push notification request object. $notification = new \Fcm\Push\Notification(); // Enhance the notification object with our custom options. $notification ->addRecipient($deviceId) ->setTitle('Hello from php-fcm!') ->setBody('Notification body') ->addData('key', 'value'); // Send the notification to the Firebase servers for further handling. $client->send($notification);
Full documentation
Read the documentation here or look in the docs directory.
Tests
Run the unit tests with PHPUnit:
composer test
Before the first time you run them, you may need to run:
composer install
Windows TESTING
For local Windows Testing, you will need to install xdebug and add
zend_extension=xdebug xdebug.mode=coverage
and set composer.json scripts line to:
"scripts": {
"test": ["vendor/bin/phpunit -c phpunit.dist.xml"]
},
xUX TESTING:
For local xUX or online github/codeforce testing, in composer.json set scripts line to:
"scripts": {
"test": ["XDEBUG_MODE=coverage vendor/bin/phpunit -c phpunit.dist.xml"]
},
License
统计信息
- 总下载量: 301.26k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 68
- 点击次数: 1
- 依赖项目数: 3
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-04-09