Skip to content

Commit 19d9983

Browse files
committed
Merge branch 'release/v1.1.0'
2 parents abd44ac + 7602d51 commit 19d9983

File tree

5 files changed

+45
-30
lines changed

5 files changed

+45
-30
lines changed

.gitattributes

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
/.github export-ignore
12
/.gitattributes export-ignore
23
/.gitignore export-ignore
34
/.gitmodules export-ignore
4-
/.travis.yml export-ignore
55
/phpunit.xml export-ignore
66
/tests export-ignore

.github/workflows/test.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
workflow_dispatch:
6+
schedule:
7+
- cron: '0 2 * * *'
8+
9+
jobs:
10+
test:
11+
name: Test
12+
13+
runs-on: ubuntu-latest
14+
15+
strategy:
16+
matrix:
17+
php-version: ['7.2', '7.3', '7.4', '8.0', '8.1']
18+
19+
steps:
20+
- name: Setup PHP ${{ matrix.php-version }}
21+
uses: shivammathur/setup-php@v2
22+
with:
23+
php-version: ${{ matrix.php-version }}
24+
25+
- name: Checkout
26+
uses: actions/checkout@v2
27+
28+
- name: Install dependencies
29+
run: composer install --quiet --no-ansi --prefer-dist --no-progress --no-interaction
30+
31+
- name: Run test suite
32+
run: vendor/bin/phpunit --coverage-clover=coverage.xml
33+
34+
- name: Upload coverage to Codecov
35+
uses: codecov/codecov-action@v2
36+
with:
37+
token: ${{ secrets.CODECOV_TOKEN }}
38+
files: ./coverage.xml
39+
fail_ci_if_error: false

.travis.yml

-24
This file was deleted.

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Add AWS_SESSION_TOKEN for Laravel 6, 7 and 8
1+
# Add AWS_SESSION_TOKEN for Laravel 6, 7, 8 and 9
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-red)](https://laravel.com/)
7-
[![Build](https://travis-ci.org/sunaoka/laravel-aws-session-token.svg?branch=develop)](https://travis-ci.org/sunaoka/laravel-aws-session-token)
6+
[![Laravel](https://img.shields.io/badge/laravel-6.x%20%7C%207.x%20%7C%208.x%20%7C%209.x-red)](https://laravel.com/)
7+
[![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

1010
----

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"
15+
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0"
1616
},
1717
"require-dev": {
18-
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0"
18+
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0 || ^7.0"
1919
},
2020
"autoload": {
2121
"psr-4": {

0 commit comments

Comments
 (0)