descom / php-lib
Package for Descom
Installs: 99
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/descom/php-lib
Requires
- php: ^7.3|^8.0
- illuminate/config: ^8.0|^9.0|^10.0|^11.0|^12.0
- illuminate/events: ^8.0|^9.0|^10.0|^11.0|^12.0
- illuminate/http: ^8.0|^9.0|^10.0|^11.0|^12.0
Requires (Dev)
- guzzlehttp/guzzle: ^7.0|^8.0|^9.0
- orchestra/testbench: ^6.0|^7.0|^8.0|^9.0|^10.0
- phpstan/phpstan: ^2.0
- phpunit/phpunit: ^9.0|^10.0|^11.0|^11.5
- plesk/api-php-lib: ^1.0
Suggests
- plesk/api-php-lib: ^1.0
This package is auto-updated.
Last update: 2025-10-16 12:18:05 UTC
README
Installation
You can install the package via composer:
composer require descom/php-lib
Publish package config file:
php artisan vendor:publish --provider="DescomLib\DescomLibServiceProvider" --tag=config
- Select Provider: DescomLib\DescomLibServiceProvider
Insert token in config/descom_lib.php
Notificacation Manager Serviice
With method send, you can send a request to service.
Thie method require $data argument. See samples
Events
- DescomLib\Services\NotificationManager\Events\NotificationFailed
Samples Data
[
'action' => 'loggedEmail',
'data' => [
'email' => 'test@example.com',
'subscription' => 'example.com',
'ip' => '192.168.0.1',
'geo' => [
'country' => [
'name' => 'EspaƱa',
'iso' => 'ES'
]
],
'instance'=> [
'hostname' => 'hostname',
'name' => 'DC/TEST/Linux/01',
],
'dns' => [
'hostname'=> 'hostname.test.com',
'domain' => 'test.com',
]
]
]
[
'action' => 'loggedEmailWithoutSSL',
'data' => [
'email' => 'test@example.com',
'subscription' => 'example.com',
],
]
Testing
composer test