Skip to content

Commit 79d7642

Browse files
authored
Merge pull request #29 from aliasproject/aws_sdk_update
2 parents a8ff834 + 487415b commit 79d7642

File tree

6 files changed

+1540
-1504
lines changed

6 files changed

+1540
-1504
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
php: ['8.0']
1414
name: Pest - PHP ${{ matrix.php }}
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v4
1717
- uses: shivammathur/setup-php@v2
1818
with:
1919
php-version: ${{ matrix.php }}
@@ -80,7 +80,6 @@ jobs:
8080
token: ${{ secrets.CODECOV_TOKEN }}
8181
flags: jest
8282
file: test-results/jest/clover.xml
83-
8483
# phpcs:
8584
# runs-on: ubuntu-latest
8685
# name: PHP Style Fixer

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
with:
1515
ref: ${{ github.event.release.target_commitish }}
1616
- name: Use Node.js 12

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ vendor/
77
.idea/
88
.phpunit.result.cache
99
yarn-error.log
10+
.DS_Store

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
}
2020
],
2121
"require": {
22-
"php": "^8.0",
22+
"php": "^8.0|^8.1|^8.2",
2323
"ext-json": "*",
24-
"aws/aws-sdk-php": "^3.80",
24+
"aws/aws-sdk-php": "^3.308",
2525
"bref/bref": "^1.1",
2626
"guzzlehttp/guzzle": "^6.3|^7.0",
27-
"laravel/framework": "^6.0|^7.0|^8.0|^9.0"
27+
"laravel/framework": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
2828
},
2929
"require-dev": {
3030
"mockery/mockery": "^1.2",
@@ -61,4 +61,4 @@
6161
},
6262
"minimum-stability": "dev",
6363
"prefer-stable": true
64-
}
64+
}

0 commit comments

Comments
 (0)