Skip to content

Commit

Permalink
AWS SDK Update and workflow package version update
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelaguiar committed Aug 23, 2024
1 parent a8ff834 commit 4f05df8
Show file tree
Hide file tree
Showing 6 changed files with 1,618 additions and 1,578 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
strategy:
fail-fast: true
matrix:
php: ['8.0']
php: ["8.0"]
name: Pest - PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: "8.0"
extensions: soap, bcmath, pdo_sqlite, intl
- uses: ramsey/composer-install@v1
with:
Expand All @@ -68,7 +68,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '15'
node-version: "15"
- name: Install dependencies
run: yarn install
- name: Run Jest
Expand All @@ -80,7 +80,6 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
flags: jest
file: test-results/jest/clover.xml

# phpcs:
# runs-on: ubuntu-latest
# name: PHP Style Fixer
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ name: Publish new release

on:
release:
types: [ published ]
types: [published]

jobs:
release:
name: Create NPM release
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ github.event.release.target_commitish }}
- name: Use Node.js 12
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ vendor/
.idea/
.phpunit.result.cache
yarn-error.log
.DS_Store
127 changes: 65 additions & 62 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,64 +1,67 @@
{
"name": "georgeboot/laravel-echo-api-gateway",
"description": "Use Laravel Echo with API Gateway Websockets",
"keywords": [
"laravel",
"echo",
"websockets",
"bref",
"serverless",
"laravel vapor"
],
"homepage": "https://github.com/georgeboot/laravel-echo-api-gateway",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "George Boot",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"aws/aws-sdk-php": "^3.80",
"bref/bref": "^1.1",
"guzzlehttp/guzzle": "^6.3|^7.0",
"laravel/framework": "^6.0|^7.0|^8.0|^9.0"
"name": "georgeboot/laravel-echo-api-gateway",
"description": "Use Laravel Echo with API Gateway Websockets",
"keywords": [
"laravel",
"echo",
"websockets",
"bref",
"serverless",
"laravel vapor"
],
"homepage": "https://github.com/georgeboot/laravel-echo-api-gateway",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "George Boot",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0|^8.1|^8.2",
"ext-json": "*",
"aws/aws-sdk-php": "^3.308",
"bref/bref": "^1.1",
"guzzlehttp/guzzle": "^6.3|^7.0",
"laravel/framework": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"mockery/mockery": "^1.2",
"nunomaduro/larastan": "^0.7",
"orchestra/testbench": "^6.9",
"pestphp/pest": "^1.0",
"phpunit/phpunit": "^8.0|^9.0"
},
"autoload": {
"psr-4": {
"Georgeboot\\LaravelEchoApiGateway\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Georgeboot\\LaravelEchoApiGateway\\ServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.0.12"
},
"require-dev": {
"mockery/mockery": "^1.2",
"nunomaduro/larastan": "^0.7",
"orchestra/testbench": "^6.9",
"pestphp/pest": "^1.0",
"phpunit/phpunit": "^8.0|^9.0"
},
"autoload": {
"psr-4": {
"Georgeboot\\LaravelEchoApiGateway\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Georgeboot\\LaravelEchoApiGateway\\ServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.0.12"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}
Loading

0 comments on commit 4f05df8

Please sign in to comment.