File tree Expand file tree Collapse file tree 8 files changed +44
-11
lines changed Expand file tree Collapse file tree 8 files changed +44
-11
lines changed Original file line number Diff line number Diff line change
1
+ ; This is the top-most EditorConfig file, which is not inherited by any other files.
2
+ ; This file is used for unify the coding style for different editors and IDEs.
3
+ ; More information at https://editorconfig.org
4
+
5
+ root = true
6
+
7
+ [* ]
8
+ charset = utf-8
9
+ end_of_line = lf
10
+
11
+ [* .md ]
12
+ trim_trailing_whitespace = false
13
+
14
+ [* .yml ]
15
+ indent_style = space
16
+
17
+ [* .json ]
18
+ indent_style = space
19
+ indent_size = 2
Original file line number Diff line number Diff line change 14
14
include :
15
15
- laravel : 10.*
16
16
testbench : 8.*
17
+ - laravel : 9.*
18
+ testbench : 8.*
17
19
steps :
18
20
- name : Setup PHP
19
21
uses : shivammathur/setup-php@v2
Original file line number Diff line number Diff line change 41
41
}
42
42
},
43
43
"require" : {
44
- "php" : " ^8.0 " ,
45
- "CSlant /telegram-git-notifier" : " dev-main "
44
+ "php" : " ^8.1 " ,
45
+ "cslant /telegram-git-notifier" : " ^v1.3.1 "
46
46
},
47
47
"require-dev" : {
48
48
"friendsofphp/php-cs-fixer" : " ^v3.37.1" ,
49
49
"pestphp/pest" : " ^2.24" ,
50
50
"phpstan/phpstan" : " ^1.10.39"
51
51
},
52
+ "scripts" : {
53
+ "format" : " vendor/bin/php-cs-fixer fix --allow-risky=yes" ,
54
+ "post-install-cmd" : [
55
+ " bash vendor/cslant/telegram-git-notifier/install.sh"
56
+ ],
57
+ "post-update-cmd" : [
58
+ " bash vendor/cslant/telegram-git-notifier/install.sh"
59
+ ]
60
+ },
52
61
"support" : {
53
62
"issues" : " https://github.com/cslant/laravel-telegram-git-notifier/issues"
54
63
},
60
69
}
61
70
},
62
71
"config" : {
63
- "sort-packages" : true
72
+ "sort-packages" : true ,
73
+ "allow-plugins" : {
74
+ "pestphp/pest-plugin" : true
75
+ }
64
76
},
65
77
"minimum-stability" : " dev" ,
66
78
"prefer-stable" : true
Original file line number Diff line number Diff line change 31
31
'author ' => [
32
32
'discussion ' => env (
33
33
'TGN_AUTHOR_DISCUSSION ' ,
34
- 'https://github.com/lbiltech /laravel-telegram-git-notifier/discussions '
34
+ 'https://github.com/cslant /laravel-telegram-git-notifier/discussions '
35
35
),
36
36
'source_code ' => env (
37
37
'TGN_AUTHOR_SOURCE_CODE ' ,
38
- 'https://github.com/lbiltech /laravel-telegram-git-notifier '
38
+ 'https://github.com/cslant /laravel-telegram-git-notifier '
39
39
),
40
40
],
41
41
Original file line number Diff line number Diff line change 13
13
</include >
14
14
</coverage >
15
15
<testsuites >
16
- <testsuite name =" LbilTech Laravel Telegram Git Notify " >
16
+ <testsuite name =" CSlant Laravel Telegram Git Notifier " >
17
17
<directory >tests</directory >
18
18
</testsuite >
19
19
</testsuites >
20
- </phpunit >
20
+ </phpunit >
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
3
use Illuminate \Support \Facades \Route ;
4
- use LbilTech \LaravelTelegramGitNotifier \Http \Actions \WebhookAction ;
4
+ use CSlant \LaravelTelegramGitNotifier \Http \Actions \WebhookAction ;
5
5
6
6
/*
7
7
|--------------------------------------------------------------------------
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace LbilTech \LaravelTelegramGitNotifier \Http \Actions ;
3
+ namespace CSlant \LaravelTelegramGitNotifier \Http \Actions ;
4
4
5
- use LbilTech \TelegramGitNotifier \Webhook ;
5
+ use CSlant \TelegramGitNotifier \Webhook ;
6
6
7
7
class WebhookAction
8
8
{
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace LbilTech \LaravelTelegramGitNotifier \Providers ;
3
+ namespace CSlant \LaravelTelegramGitNotifier \Providers ;
4
4
5
5
use Illuminate \Support \ServiceProvider ;
6
6
You can’t perform that action at this time.
0 commit comments