https://github.com/offizium-berndstorath/chirpstack-php
Grpc Php Api for Chirpstack
https://github.com/offizium-berndstorath/chirpstack-php
chirpstack
Last synced: 5 months ago
JSON representation
Grpc Php Api for Chirpstack
- Host: GitHub
- URL: https://github.com/offizium-berndstorath/chirpstack-php
- Owner: offizium-berndstorath
- Created: 2024-07-10T06:01:33.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-10T06:01:53.000Z (almost 2 years ago)
- Last Synced: 2025-11-27T14:44:51.275Z (5 months ago)
- Topics: chirpstack
- Language: PHP
- Homepage:
- Size: 177 KB
- Stars: 1
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# chirpstack-api
ChirpStack gRPC API message and service wrappers for PHP.
## Install
With composer:
```sh
composer require chirpstack/chirpstack-api
```
## Usage
All messages, services, constants, etc. are auto-generated from the ChirpStack protobuf definitions. The result is that
this package structure matches that of the protobuf definitions.
The protobuf definitions can be found here: https://github.com/chirpstack/chirpstack/tree/master/api/proto
## Example
```php
ChannelCredentials::createInsecure()]);
$client = new ApplicationServiceClient('url', [], $channel);
$request = new ListApplicationsRequest();
$response = $client->List($request);
$data = $response->wait();
print_r($data);
}
main();
```