forked from ringcentral/psr7
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dc960a9
commit 93c36e7
Showing
5 changed files
with
64 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
github: [Nyholm, GrahamCampbell] | ||
tidelift: "packagist/guzzlehttp/psr7" |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
daysUntilStale: 120 | ||
daysUntilClose: 14 | ||
exemptLabels: | ||
- lifecycle/keep-open | ||
- lifecycle/ready-for-merge | ||
# Label to use when marking an issue as stale | ||
staleLabel: lifecycle/stale | ||
# Comment to post when marking an issue as stale. Set to `false` to disable | ||
markComment: > | ||
This issue has been automatically marked as stale because it has not had | ||
recent activity. It will be closed after 2 weeks if no further activity occurs. Thank you | ||
for your contributions. | ||
# Comment to post when closing a stale issue. Set to `false` to disable | ||
closeComment: false |
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,4 +1,11 @@ | ||
Copyright (c) 2015 Michael Dowling, https://github.com/mtdowling <[email protected]> | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2015 Michael Dowling <[email protected]> | ||
Copyright (c) 2015 Márk Sági-Kazár <[email protected]> | ||
Copyright (c) 2015 Graham Campbell <[email protected]> | ||
Copyright (c) 2016 Tobias Schultze <[email protected]> | ||
Copyright (c) 2016 George Mponos <[email protected]> | ||
Copyright (c) 2018 Tobias Nyholm <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
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 |
---|---|---|
|
@@ -807,3 +807,18 @@ Whether two URIs can be considered equivalent. Both URIs are normalized automati | |
`$normalizations` bitmask. The method also accepts relative URI references and returns true when they are equivalent. | ||
This of course assumes they will be resolved against the same base URI. If this is not the case, determination of | ||
equivalence or difference of relative references does not mean anything. | ||
|
||
|
||
## Security | ||
|
||
If you discover a security vulnerability within this package, please send an email to [email protected]. All security vulnerabilities will be promptly addressed. Please do not disclose security-related issues publicly until a fix has been announced. Please see [Security Policy](https://github.com/guzzle/psr7/security/policy) for more information. | ||
|
||
## License | ||
|
||
Guzzle is made available under the MIT License (MIT). Please see [License File](LICENSE) for more information. | ||
|
||
## For Enterprise | ||
|
||
Available as part of the Tidelift Subscription | ||
|
||
The maintainers of Guzzle and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/packagist-guzzlehttp-psr7?utm_source=packagist-guzzlehttp-psr7&utm_medium=referral&utm_campaign=enterprise&utm_term=repo) |
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,17 +1,37 @@ | ||
{ | ||
"name": "guzzlehttp/psr7", | ||
"type": "library", | ||
"description": "PSR-7 message implementation that also provides common utility methods", | ||
"keywords": ["request", "response", "message", "stream", "http", "uri", "url", "psr-7"], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Graham Campbell", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/GrahamCampbell" | ||
}, | ||
{ | ||
"name": "Michael Dowling", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/mtdowling" | ||
}, | ||
{ | ||
"name": "George Mponos", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/gmponos" | ||
}, | ||
{ | ||
"name": "Tobias Nyholm", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/Nyholm" | ||
}, | ||
{ | ||
"name": "Márk Sági-Kazár", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/sagikazarmark" | ||
}, | ||
{ | ||
"name": "Tobias Schultze", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/Tobion" | ||
} | ||
], | ||
|
@@ -45,5 +65,9 @@ | |
"branch-alias": { | ||
"dev-master": "1.7-dev" | ||
} | ||
}, | ||
"config": { | ||
"preferred-install": "dist", | ||
"sort-packages": true | ||
} | ||
} |