Skip to content

Commit 93c36e7

Browse files
Updated docs (#434)
1 parent dc960a9 commit 93c36e7

File tree

5 files changed

+64
-2
lines changed

5 files changed

+64
-2
lines changed

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github: [Nyholm, GrahamCampbell]
2+
tidelift: "packagist/guzzlehttp/psr7"

.github/stale.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
daysUntilStale: 120
2+
daysUntilClose: 14
3+
exemptLabels:
4+
- lifecycle/keep-open
5+
- lifecycle/ready-for-merge
6+
# Label to use when marking an issue as stale
7+
staleLabel: lifecycle/stale
8+
# Comment to post when marking an issue as stale. Set to `false` to disable
9+
markComment: >
10+
This issue has been automatically marked as stale because it has not had
11+
recent activity. It will be closed after 2 weeks if no further activity occurs. Thank you
12+
for your contributions.
13+
# Comment to post when closing a stale issue. Set to `false` to disable
14+
closeComment: false

LICENSE

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
Copyright (c) 2015 Michael Dowling, https://github.com/mtdowling <mtdowling@gmail.com>
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 Michael Dowling <mtdowling@gmail.com>
4+
Copyright (c) 2015 Márk Sági-Kazár <mark.sagikazar@gmail.com>
5+
Copyright (c) 2015 Graham Campbell <hello@gjcampbell.co.uk>
6+
Copyright (c) 2016 Tobias Schultze <webmaster@tubo-world.de>
7+
Copyright (c) 2016 George Mponos <gmponos@gmail.com>
8+
Copyright (c) 2018 Tobias Nyholm <tobias.nyholm@gmail.com>
29

310
Permission is hereby granted, free of charge, to any person obtaining a copy
411
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -807,3 +807,18 @@ Whether two URIs can be considered equivalent. Both URIs are normalized automati
807807
`$normalizations` bitmask. The method also accepts relative URI references and returns true when they are equivalent.
808808
This of course assumes they will be resolved against the same base URI. If this is not the case, determination of
809809
equivalence or difference of relative references does not mean anything.
810+
811+
812+
## Security
813+
814+
If you discover a security vulnerability within this package, please send an email to security@tidelift.com. 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.
815+
816+
## License
817+
818+
Guzzle is made available under the MIT License (MIT). Please see [License File](LICENSE) for more information.
819+
820+
## For Enterprise
821+
822+
Available as part of the Tidelift Subscription
823+
824+
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)

composer.json

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,37 @@
11
{
22
"name": "guzzlehttp/psr7",
3-
"type": "library",
43
"description": "PSR-7 message implementation that also provides common utility methods",
54
"keywords": ["request", "response", "message", "stream", "http", "uri", "url", "psr-7"],
65
"license": "MIT",
76
"authors": [
7+
{
8+
"name": "Graham Campbell",
9+
"email": "hello@gjcampbell.co.uk",
10+
"homepage": "https://github.com/GrahamCampbell"
11+
},
812
{
913
"name": "Michael Dowling",
1014
"email": "mtdowling@gmail.com",
1115
"homepage": "https://github.com/mtdowling"
1216
},
17+
{
18+
"name": "George Mponos",
19+
"email": "gmponos@gmail.com",
20+
"homepage": "https://github.com/gmponos"
21+
},
22+
{
23+
"name": "Tobias Nyholm",
24+
"email": "tobias.nyholm@gmail.com",
25+
"homepage": "https://github.com/Nyholm"
26+
},
27+
{
28+
"name": "Márk Sági-Kazár",
29+
"email": "mark.sagikazar@gmail.com",
30+
"homepage": "https://github.com/sagikazarmark"
31+
},
1332
{
1433
"name": "Tobias Schultze",
34+
"email": "webmaster@tubo-world.de",
1535
"homepage": "https://github.com/Tobion"
1636
}
1737
],
@@ -45,5 +65,9 @@
4565
"branch-alias": {
4666
"dev-master": "1.7-dev"
4767
}
68+
},
69+
"config": {
70+
"preferred-install": "dist",
71+
"sort-packages": true
4872
}
4973
}

0 commit comments

Comments
 (0)