$group_key = 'xxxx';
$group_master_secret = 'xxxx';
注:Group Key 需拼接 'group-' 使用
$client = new \JPush\Client('group-' . $group_key, $group_master_secret);
$client->push()
->setPlatform('all')
->addAllAudience()
->setNotificationAlert('Hello, JPush')
->send();