|
1 | 1 | { |
2 | | - "name": "laravel-notification-channels/telegram", |
3 | | - "description": "Telegram Notifications Channel for Laravel", |
4 | | - "license": "MIT", |
5 | | - "keywords": [ |
6 | | - "telegram notification", |
7 | | - "laravel", |
8 | | - "telegram", |
9 | | - "notification", |
10 | | - "telegram notifications channel" |
11 | | - ], |
12 | | - "authors": [ |
13 | | - { |
14 | | - "name": "Irfaq Syed", |
15 | | - |
16 | | - "homepage": "https://lukonet.com", |
17 | | - "role": "Developer" |
18 | | - } |
19 | | - ], |
20 | | - "homepage": "https://github.com/laravel-notification-channels/telegram", |
21 | | - "require": { |
22 | | - "php": "^8.0", |
23 | | - "ext-json": "*", |
24 | | - "guzzlehttp/guzzle": "^7.0", |
25 | | - "illuminate/contracts": "^9.0", |
26 | | - "illuminate/notifications": "^9.0", |
27 | | - "illuminate/support": "^9.0" |
28 | | - }, |
29 | | - "require-dev": { |
30 | | - "mockery/mockery": "^1.4", |
31 | | - "nunomaduro/larastan": "^2.0", |
32 | | - "orchestra/testbench": "^7.0", |
33 | | - "pestphp/pest": "^1.21", |
34 | | - "pestphp/pest-plugin-laravel": "^1.1", |
35 | | - "phpstan/extension-installer": "^1.1", |
36 | | - "phpstan/phpstan-deprecation-rules": "^1.0", |
37 | | - "phpstan/phpstan-phpunit": "^1.0", |
38 | | - "phpunit/phpunit": "^9.5" |
39 | | - }, |
40 | | - "minimum-stability": "dev", |
41 | | - "prefer-stable": true, |
42 | | - "autoload": { |
43 | | - "psr-4": { |
44 | | - "NotificationChannels\\Telegram\\": "src" |
45 | | - } |
46 | | - }, |
47 | | - "autoload-dev": { |
48 | | - "psr-4": { |
49 | | - "NotificationChannels\\Telegram\\Tests\\": "tests" |
50 | | - } |
51 | | - }, |
52 | | - "config": { |
53 | | - "allow-plugins": { |
54 | | - "phpstan/extension-installer": true, |
55 | | - "pestphp/pest-plugin": true |
| 2 | + "name": "laravel-notification-channels/telegram", |
| 3 | + "description": "Telegram Notifications Channel for Laravel", |
| 4 | + "license": "MIT", |
| 5 | + "keywords": [ |
| 6 | + "telegram notification", |
| 7 | + "laravel", |
| 8 | + "telegram", |
| 9 | + "notification", |
| 10 | + "telegram notifications channel" |
| 11 | + ], |
| 12 | + "authors": [ |
| 13 | + { |
| 14 | + "name": "Irfaq Syed", |
| 15 | + |
| 16 | + "homepage": "https://lukonet.com", |
| 17 | + "role": "Developer" |
| 18 | + } |
| 19 | + ], |
| 20 | + "homepage": "https://github.com/laravel-notification-channels/telegram", |
| 21 | + "require": { |
| 22 | + "php": "^8.1", |
| 23 | + "ext-json": "*", |
| 24 | + "guzzlehttp/guzzle": "^7.2", |
| 25 | + "illuminate/contracts": "^10.0", |
| 26 | + "illuminate/notifications": "^10.0", |
| 27 | + "illuminate/support": "^10.0" |
| 28 | + }, |
| 29 | + "require-dev": { |
| 30 | + "mockery/mockery": "^1.4.4", |
| 31 | + "nunomaduro/larastan": "^2.4", |
| 32 | + "orchestra/testbench": "^8.0", |
| 33 | + "pestphp/pest": "^1.22", |
| 34 | + "pestphp/pest-plugin-laravel": "^1.4", |
| 35 | + "phpstan/extension-installer": "^1.2", |
| 36 | + "phpstan/phpstan-deprecation-rules": "^1.1", |
| 37 | + "phpstan/phpstan-phpunit": "^1.3", |
| 38 | + "phpunit/phpunit": "^9.5.10" |
| 39 | + }, |
| 40 | + "minimum-stability": "dev", |
| 41 | + "prefer-stable": true, |
| 42 | + "autoload": { |
| 43 | + "psr-4": { |
| 44 | + "NotificationChannels\\Telegram\\": "src" |
| 45 | + } |
| 46 | + }, |
| 47 | + "autoload-dev": { |
| 48 | + "psr-4": { |
| 49 | + "NotificationChannels\\Telegram\\Tests\\": "tests" |
| 50 | + } |
| 51 | + }, |
| 52 | + "config": { |
| 53 | + "allow-plugins": { |
| 54 | + "phpstan/extension-installer": true, |
| 55 | + "pestphp/pest-plugin": true |
| 56 | + }, |
| 57 | + "sort-packages": true |
| 58 | + }, |
| 59 | + "extra": { |
| 60 | + "laravel": { |
| 61 | + "providers": [ |
| 62 | + "NotificationChannels\\Telegram\\TelegramServiceProvider" |
| 63 | + ] |
| 64 | + } |
56 | 65 | }, |
57 | | - "sort-packages": true |
58 | | - }, |
59 | | - "extra": { |
60 | | - "laravel": { |
61 | | - "providers": [ |
62 | | - "NotificationChannels\\Telegram\\TelegramServiceProvider" |
63 | | - ] |
| 66 | + "scripts": { |
| 67 | + "post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi", |
| 68 | + "analyse": "vendor/bin/phpstan analyse", |
| 69 | + "test": "vendor/bin/pest", |
| 70 | + "test-coverage": "vendor/bin/pest --coverage" |
64 | 71 | } |
65 | | - }, |
66 | | - "scripts": { |
67 | | - "post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi", |
68 | | - "analyse": "vendor/bin/phpstan analyse", |
69 | | - "test": "vendor/bin/pest", |
70 | | - "test-coverage": "vendor/bin/pest --coverage" |
71 | | - } |
72 | 72 | } |
0 commit comments