PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Stefan Ninic   Laravel TikFinity Webhooks   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel TikFinity Webhooks
Handle TikTok events using TikFinity Webhooks
Author: By
Last change:
Date: 2 days ago
Size: 1,505 bytes
 

Contents

Class file image Download
{ "name": "kg-bot/laravel-tikfinity-webhooks", "description": "A Laravel package for TikFinity (TikTok LIVE) webhooks", "require": { "php": "^8.1", "illuminate/collections": "^12.14", "illuminate/http": "^12.14", "illuminate/database": "^12.14" }, "require-dev": { "orchestra/testbench": "^10.3", "pestphp/pest": "^3.8" }, "keywords": [ "laravel", "tiktok", "live", "webhooks", "tikfinity" ], "license": "MIT", "authors": [ { "name": "Stefan Ninic", "email": "[email protected]" } ], "autoload": { "psr-4": { "KgBot\\TikFinityWebhooks\\": "src/" } }, "autoload-dev": { "psr-4": { "KgBot\\TikFinityWebhooks\\Tests\\": "tests" } }, "scripts": { "test": "vendor/bin/pest", "test-coverage": "vendor/bin/pest --coverage" }, "extra": { "laravel": { "providers": [ "KgBot\\TikFinityWebhooks\\TikFinityWebhooksServiceProvider" ] } }, "config": { "sort-packages": true, "allow-plugins": { "pestphp/pest-plugin": true } }, "minimum-stability": "dev", "prefer-stable": true, "funding": [ { "type": "buy-me-a-coffee", "url": "https://rebrand.ly/laravel-tikfinity-webhooks" } ] }