composer.json
{
"name": "cslant/laravel-telegram-git-notifier",
"description": "Send notification from Gitlab and Github events to Telegram",
"keywords": [
"cslant",
"telegram-bot",
"notify",
"git-webhook",
"telegram-notifier",
"telegram-git-notifier",
"github-notifier",
"gitlab-notifier",
"github-telegram-bot",
"gitlab-telegram-bot",
"telegram-bot-github-notify",
"telegram-bot-gitlab-notify"
],
"homepage": "https://github.com/cslant/laravel-telegram-git-notifier",
"license": "MIT",
"authors": [
{
"name": "Tan Nguyen",
"email": "tannp@cslant.com",
"homepage": "https://tanhongit.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"CSlant\\LaravelTelegramGitNotifier\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CSlant\\LaravelTelegramGitNotifier\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"cslant/telegram-git-notifier": "^v1.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^v3.0",
"nunomaduro/collision": "^7.10",
"nunomaduro/larastan": "^2.9",
"orchestra/testbench": "^8.0",
"pestphp/pest": "^2.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3"
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"support": {
"issues": "https://github.com/cslant/laravel-telegram-git-notifier/issues"
},
"extra": {
"laravel": {
"providers": [
"CSlant\\LaravelTelegramGitNotifier\\Providers\\TelegramGitNotifierServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}