Skip to content

Commit 1ffbeea

Browse files
committed
Merge branch 'release/v1.3.0'
2 parents a7cf935 + 0ab815e commit 1ffbeea

File tree

4 files changed

+26
-10
lines changed

4 files changed

+26
-10
lines changed

.github/workflows/test.yml

+21-5
Original file line numberDiff line numberDiff line change
@@ -13,35 +13,51 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ ubuntu-latest ]
16-
php: [ 7.2, 7.3, 7.4, 8.0, 8.1, 8.2 ]
17-
laravel: [ 6, 7, 8, 9, 10 ]
16+
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]
17+
laravel: [ 6, 7, 8, 9, 10, 11 ]
1818
exclude:
1919
- php: 7.2
2020
laravel: 8
2121
- php: 7.2
2222
laravel: 9
2323
- php: 7.2
2424
laravel: 10
25+
- php: 7.2
26+
laravel: 11
2527
- php: 7.3
2628
laravel: 9
2729
- php: 7.3
2830
laravel: 10
31+
- php: 7.3
32+
laravel: 11
2933
- php: 7.4
3034
laravel: 9
3135
- php: 7.4
3236
laravel: 10
33-
- php: '8.0'
37+
- php: 7.4
38+
laravel: 11
39+
- php: 8.0
3440
laravel: 10
41+
- php: 8.0
42+
laravel: 11
3543
- php: 8.1
3644
laravel: 6
3745
- php: 8.1
3846
laravel: 7
47+
- php: 8.1
48+
laravel: 11
3949
- php: 8.2
4050
laravel: 6
4151
- php: 8.2
4252
laravel: 7
4353
- php: 8.2
4454
laravel: 8
55+
- php: 8.3
56+
laravel: 6
57+
- php: 8.3
58+
laravel: 7
59+
- php: 8.3
60+
laravel: 8
4561

4662
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
4763

@@ -54,7 +70,7 @@ jobs:
5470
tools: composer:v2
5571

5672
- name: Checkout
57-
uses: actions/checkout@v3
73+
uses: actions/checkout@v4
5874

5975
- name: Install dependencies
6076
run: |
@@ -69,7 +85,7 @@ jobs:
6985
run: vendor/bin/phpunit --coverage-clover=coverage.xml
7086

7187
- name: Upload coverage to Codecov
72-
uses: codecov/codecov-action@v3
88+
uses: codecov/codecov-action@v4
7389
with:
7490
token: ${{ secrets.CODECOV_TOKEN }}
7591
files: ./coverage.xml

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Norifumi SUNAOKA
3+
Copyright (c) 2020-2024 Norifumi SUNAOKA
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Add AWS_SESSION_TOKEN for Laravel 6, 7, 8, 9 and 10
1+
# Add AWS_SESSION_TOKEN for Laravel 6.x to 11.x
22

33
[![Latest](https://poser.pugx.org/sunaoka/laravel-aws-session-token/v)](https://packagist.org/packages/sunaoka/laravel-aws-session-token)
44
[![License](https://poser.pugx.org/sunaoka/laravel-aws-session-token/license)](https://packagist.org/packages/sunaoka/laravel-aws-session-token)
55
[![PHP](https://img.shields.io/packagist/php-v/sunaoka/laravel-aws-session-token)](composer.json)
6-
[![Laravel](https://img.shields.io/badge/laravel-6.x%20%7C%207.x%20%7C%208.x%20%7C%209.x%20%7C%2010.x-red)](https://laravel.com/)
6+
[![Laravel](https://img.shields.io/badge/laravel-%3E=%206.x-red)](https://laravel.com/)
77
[![Test](https://github.com/sunaoka/laravel-aws-session-token/actions/workflows/test.yml/badge.svg)](https://github.com/sunaoka/laravel-aws-session-token/actions/workflows/test.yml)
88
[![codecov](https://codecov.io/gh/sunaoka/laravel-aws-session-token/branch/develop/graph/badge.svg)](https://codecov.io/gh/sunaoka/laravel-aws-session-token)
99

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
],
1313
"require": {
1414
"php": "^7.2 || ^8.0",
15-
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0"
15+
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
1616
},
1717
"require-dev": {
18-
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0"
18+
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
1919
},
2020
"autoload": {
2121
"psr-4": {

0 commit comments

Comments
 (0)