forked from georgeboot/laravel-echo-api-gateway
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AWS SDK Update and workflow package version update
- Loading branch information
1 parent
a8ff834
commit 4f05df8
Showing
6 changed files
with
1,618 additions
and
1,578 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ vendor/ | |
.idea/ | ||
.phpunit.result.cache | ||
yarn-error.log | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |
Oops, something went wrong.