Skip to content

Commit 4f05df8

Browse files
committed
AWS SDK Update and workflow package version update
1 parent a8ff834 commit 4f05df8

File tree

6 files changed

+1618
-1578
lines changed

6 files changed

+1618
-1578
lines changed

.github/workflows/ci.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
strategy:
1111
fail-fast: true
1212
matrix:
13-
php: ['8.0']
13+
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 }}
@@ -43,7 +43,7 @@ jobs:
4343
- uses: actions/checkout@v2
4444
- uses: shivammathur/setup-php@v2
4545
with:
46-
php-version: '8.0'
46+
php-version: "8.0"
4747
extensions: soap, bcmath, pdo_sqlite, intl
4848
- uses: ramsey/composer-install@v1
4949
with:
@@ -68,7 +68,7 @@ jobs:
6868
- uses: actions/checkout@v2
6969
- uses: actions/setup-node@v2
7070
with:
71-
node-version: '15'
71+
node-version: "15"
7272
- name: Install dependencies
7373
run: yarn install
7474
- name: Run Jest
@@ -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

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ name: Publish new release
22

33
on:
44
release:
5-
types: [ published ]
5+
types: [published]
66

77
jobs:
88
release:
99
name: Create NPM release
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

+1
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

+65-62
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,67 @@
11
{
2-
"name": "georgeboot/laravel-echo-api-gateway",
3-
"description": "Use Laravel Echo with API Gateway Websockets",
4-
"keywords": [
5-
"laravel",
6-
"echo",
7-
"websockets",
8-
"bref",
9-
"serverless",
10-
"laravel vapor"
11-
],
12-
"homepage": "https://github.com/georgeboot/laravel-echo-api-gateway",
13-
"type": "library",
14-
"license": "MIT",
15-
"authors": [
16-
{
17-
"name": "George Boot",
18-
"email": "[email protected]"
19-
}
20-
],
21-
"require": {
22-
"php": "^8.0",
23-
"ext-json": "*",
24-
"aws/aws-sdk-php": "^3.80",
25-
"bref/bref": "^1.1",
26-
"guzzlehttp/guzzle": "^6.3|^7.0",
27-
"laravel/framework": "^6.0|^7.0|^8.0|^9.0"
2+
"name": "georgeboot/laravel-echo-api-gateway",
3+
"description": "Use Laravel Echo with API Gateway Websockets",
4+
"keywords": [
5+
"laravel",
6+
"echo",
7+
"websockets",
8+
"bref",
9+
"serverless",
10+
"laravel vapor"
11+
],
12+
"homepage": "https://github.com/georgeboot/laravel-echo-api-gateway",
13+
"type": "library",
14+
"license": "MIT",
15+
"authors": [
16+
{
17+
"name": "George Boot",
18+
"email": "[email protected]"
19+
}
20+
],
21+
"require": {
22+
"php": "^8.0|^8.1|^8.2",
23+
"ext-json": "*",
24+
"aws/aws-sdk-php": "^3.308",
25+
"bref/bref": "^1.1",
26+
"guzzlehttp/guzzle": "^6.3|^7.0",
27+
"laravel/framework": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
28+
},
29+
"require-dev": {
30+
"mockery/mockery": "^1.2",
31+
"nunomaduro/larastan": "^0.7",
32+
"orchestra/testbench": "^6.9",
33+
"pestphp/pest": "^1.0",
34+
"phpunit/phpunit": "^8.0|^9.0"
35+
},
36+
"autoload": {
37+
"psr-4": {
38+
"Georgeboot\\LaravelEchoApiGateway\\": "src/"
39+
}
40+
},
41+
"autoload-dev": {
42+
"psr-4": {
43+
"Tests\\": "tests/"
44+
}
45+
},
46+
"scripts": {
47+
"test": "vendor/bin/phpunit"
48+
},
49+
"extra": {
50+
"laravel": {
51+
"providers": [
52+
"Georgeboot\\LaravelEchoApiGateway\\ServiceProvider"
53+
]
54+
}
55+
},
56+
"config": {
57+
"sort-packages": true,
58+
"platform": {
59+
"php": "8.0.12"
2860
},
29-
"require-dev": {
30-
"mockery/mockery": "^1.2",
31-
"nunomaduro/larastan": "^0.7",
32-
"orchestra/testbench": "^6.9",
33-
"pestphp/pest": "^1.0",
34-
"phpunit/phpunit": "^8.0|^9.0"
35-
},
36-
"autoload": {
37-
"psr-4": {
38-
"Georgeboot\\LaravelEchoApiGateway\\": "src/"
39-
}
40-
},
41-
"autoload-dev": {
42-
"psr-4": {
43-
"Tests\\": "tests/"
44-
}
45-
},
46-
"scripts": {
47-
"test": "vendor/bin/phpunit"
48-
},
49-
"extra": {
50-
"laravel": {
51-
"providers": [
52-
"Georgeboot\\LaravelEchoApiGateway\\ServiceProvider"
53-
]
54-
}
55-
},
56-
"config": {
57-
"sort-packages": true,
58-
"platform": {
59-
"php": "8.0.12"
60-
}
61-
},
62-
"minimum-stability": "dev",
63-
"prefer-stable": true
64-
}
61+
"allow-plugins": {
62+
"pestphp/pest-plugin": true
63+
}
64+
},
65+
"minimum-stability": "dev",
66+
"prefer-stable": true
67+
}

0 commit comments

Comments
 (0)