Skip to content

Commit 8694126

Browse files
Laravel 10.x Compatibility (#167)
1 parent 5df28bc commit 8694126

File tree

2 files changed

+69
-69
lines changed

2 files changed

+69
-69
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
php: [8.0, 8.1]
16+
php: [8.1]
1717
dependencies: [lowest, highest]
1818
experimental: [false]
1919

composer.json

Lines changed: 68 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -1,72 +1,72 @@
11
{
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-
"email": "[email protected]",
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+
"email": "[email protected]",
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+
}
5665
},
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"
6471
}
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-
}
7272
}

0 commit comments

Comments
 (0)