Skip to content

Commit

Permalink
v1
Browse files Browse the repository at this point in the history
  • Loading branch information
joanfabregat committed Feb 3, 2024
1 parent ae4a98d commit da09968
Show file tree
Hide file tree
Showing 1,814 changed files with 222,669 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions .idea/cloudrun-auth-http-client.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions .idea/codeception.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

47 changes: 47 additions & 0 deletions .idea/php.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions .idea/phpspec.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/phpunit.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2018 Joan Fabrégat / Code Inc. SAS

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
38 changes: 38 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"name": "codeinc/cloudrun-auth-http-client",
"version": "v1.0",
"description": "A PSR-7 HTTP client based on Guzzle for services hosted on Google Cloud Platform Cloud Run",
"homepage": "https://github.com/codeinchq/cloudrun-auth-http-client",
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.2",
"google/auth": "^1.35",
"guzzlehttp/guzzle": "^7.8",
"psr/http-client": "^1.0"
},
"autoload": {
"psr-4": {
"CodeInc\\CloudrunAuthHttpClient\\": "src"
}
},
"authors": [
{
"name": "Joan Fabrégat",
"email": "[email protected]",
"homepage": "https://www.codeinc.co",
"role": "developer"
}
],
"config": {
"preferred-install": {
"*": "dist"
},
"allow-plugins": {
"php-http/discovery": true
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.8"
}
}
Loading

0 comments on commit da09968

Please sign in to comment.