File tree Expand file tree Collapse file tree 3 files changed +29
-2
lines changed Expand file tree Collapse file tree 3 files changed +29
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Laravel
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
+
9
+ jobs :
10
+ laravel-tests :
11
+
12
+ runs-on : ubuntu-latest
13
+
14
+ steps :
15
+ - uses : actions/checkout@v2
16
+ - name : Copy .env
17
+ run : php -r "file_exists('.env') || copy('.env.example', '.env');"
18
+ - name : Install Dependencies
19
+ run : composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
20
+ - name : Execute tests (Unit and Feature tests) via PHPUnit
21
+ run : vendor/bin/phpunit
Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to ` laravel-lob-webhooks ` will be documented in this file
4
4
5
+ ## 1.2.0 - 2020-11-07
6
+
7
+ - Update dependencies to support Laravel 8
8
+ - Add Github tests
9
+ - Joe Biden will be 46th president of USA
10
+
5
11
## 1.0.0 - 2020-01-27
6
12
7
13
- initial release
Original file line number Diff line number Diff line change 20
20
],
21
21
"require" : {
22
22
"php" : " ^7.2" ,
23
- "illuminate/support" : " ~5.8.0|^6.0|^7.0" ,
23
+ "illuminate/support" : " ~5.8.0|^6.0|^7.0|^8.0 " ,
24
24
"spatie/laravel-webhook-client" : " ^2.0"
25
25
},
26
26
"require-dev" : {
27
- "orchestra/testbench" : " ~3.8.0|^4.0|^5.0" ,
27
+ "orchestra/testbench" : " ~3.8.0|^4.0|^5.0|^6.0 " ,
28
28
"phpunit/phpunit" : " ^8.2|^9.0"
29
29
},
30
30
"autoload" : {
You can’t perform that action at this time.
0 commit comments