├── .circleci └── config.yml ├── .editorconfig ├── .gitignore ├── .scrutinizer.yml ├── LICENSE ├── README.md ├── composer.json ├── phpcs.xml.dist ├── phpunit.xml.dist ├── psalm.xml.dist ├── renovate.json ├── src ├── AbstractHeader.php ├── HeaderAccessControlAllowCredentials.php ├── HeaderAccessControlAllowHeaders.php ├── HeaderAccessControlAllowMethods.php ├── HeaderAccessControlAllowOrigin.php ├── HeaderAccessControlExposeHeaders.php ├── HeaderAccessControlMaxAge.php ├── HeaderAge.php ├── HeaderAllow.php ├── HeaderCacheControl.php ├── HeaderClearSiteData.php ├── HeaderConnection.php ├── HeaderContentDisposition.php ├── HeaderContentEncoding.php ├── HeaderContentLanguage.php ├── HeaderContentLength.php ├── HeaderContentLocation.php ├── HeaderContentMD5.php ├── HeaderContentRange.php ├── HeaderContentSecurityPolicy.php ├── HeaderContentSecurityPolicyReportOnly.php ├── HeaderContentType.php ├── HeaderCookie.php ├── HeaderCustom.php ├── HeaderDate.php ├── HeaderEtag.php ├── HeaderExpires.php ├── HeaderKeepAlive.php ├── HeaderLastModified.php ├── HeaderLink.php ├── HeaderLocation.php ├── HeaderRefresh.php ├── HeaderRetryAfter.php ├── HeaderSetCookie.php ├── HeaderSunset.php ├── HeaderTrailer.php ├── HeaderTransferEncoding.php ├── HeaderVary.php ├── HeaderWWWAuthenticate.php └── HeaderWarning.php └── tests ├── AbstractHeaderTest.php ├── HeaderAccessControlAllowCredentialsTest.php ├── HeaderAccessControlAllowHeadersTest.php ├── HeaderAccessControlAllowMethodsTest.php ├── HeaderAccessControlAllowOriginTest.php ├── HeaderAccessControlExposeHeadersTest.php ├── HeaderAccessControlMaxAgeTest.php ├── HeaderAgeTest.php ├── HeaderAllowTest.php ├── HeaderCacheControlTest.php ├── HeaderClearSiteDataTest.php ├── HeaderConnectionTest.php ├── HeaderContentDispositionTest.php ├── HeaderContentEncodingTest.php ├── HeaderContentLanguageTest.php ├── HeaderContentLengthTest.php ├── HeaderContentLocationTest.php ├── HeaderContentMD5Test.php ├── HeaderContentRangeTest.php ├── HeaderContentSecurityPolicyReportOnlyTest.php ├── HeaderContentSecurityPolicyTest.php ├── HeaderContentTypeTest.php ├── HeaderCookieTest.php ├── HeaderCustomTest.php ├── HeaderDateTest.php ├── HeaderEtagTest.php ├── HeaderExpiresTest.php ├── HeaderKeepAliveTest.php ├── HeaderLastModifiedTest.php ├── HeaderLinkTest.php ├── HeaderLocationTest.php ├── HeaderRefreshTest.php ├── HeaderRetryAfterTest.php ├── HeaderSetCookieTest.php ├── HeaderSunsetTest.php ├── HeaderTrailerTest.php ├── HeaderTransferEncodingTest.php ├── HeaderVaryTest.php ├── HeaderWWWAuthenticateTest.php └── HeaderWarningTest.php /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/composer.json -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /psalm.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/psalm.xml.dist -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/renovate.json -------------------------------------------------------------------------------- /src/AbstractHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/AbstractHeader.php -------------------------------------------------------------------------------- /src/HeaderAccessControlAllowCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderAccessControlAllowCredentials.php -------------------------------------------------------------------------------- /src/HeaderAccessControlAllowHeaders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderAccessControlAllowHeaders.php -------------------------------------------------------------------------------- /src/HeaderAccessControlAllowMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderAccessControlAllowMethods.php -------------------------------------------------------------------------------- /src/HeaderAccessControlAllowOrigin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderAccessControlAllowOrigin.php -------------------------------------------------------------------------------- /src/HeaderAccessControlExposeHeaders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderAccessControlExposeHeaders.php -------------------------------------------------------------------------------- /src/HeaderAccessControlMaxAge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderAccessControlMaxAge.php -------------------------------------------------------------------------------- /src/HeaderAge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderAge.php -------------------------------------------------------------------------------- /src/HeaderAllow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderAllow.php -------------------------------------------------------------------------------- /src/HeaderCacheControl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderCacheControl.php -------------------------------------------------------------------------------- /src/HeaderClearSiteData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderClearSiteData.php -------------------------------------------------------------------------------- /src/HeaderConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderConnection.php -------------------------------------------------------------------------------- /src/HeaderContentDisposition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderContentDisposition.php -------------------------------------------------------------------------------- /src/HeaderContentEncoding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderContentEncoding.php -------------------------------------------------------------------------------- /src/HeaderContentLanguage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderContentLanguage.php -------------------------------------------------------------------------------- /src/HeaderContentLength.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderContentLength.php -------------------------------------------------------------------------------- /src/HeaderContentLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderContentLocation.php -------------------------------------------------------------------------------- /src/HeaderContentMD5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderContentMD5.php -------------------------------------------------------------------------------- /src/HeaderContentRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderContentRange.php -------------------------------------------------------------------------------- /src/HeaderContentSecurityPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderContentSecurityPolicy.php -------------------------------------------------------------------------------- /src/HeaderContentSecurityPolicyReportOnly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderContentSecurityPolicyReportOnly.php -------------------------------------------------------------------------------- /src/HeaderContentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderContentType.php -------------------------------------------------------------------------------- /src/HeaderCookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderCookie.php -------------------------------------------------------------------------------- /src/HeaderCustom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderCustom.php -------------------------------------------------------------------------------- /src/HeaderDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderDate.php -------------------------------------------------------------------------------- /src/HeaderEtag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderEtag.php -------------------------------------------------------------------------------- /src/HeaderExpires.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderExpires.php -------------------------------------------------------------------------------- /src/HeaderKeepAlive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderKeepAlive.php -------------------------------------------------------------------------------- /src/HeaderLastModified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderLastModified.php -------------------------------------------------------------------------------- /src/HeaderLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderLink.php -------------------------------------------------------------------------------- /src/HeaderLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderLocation.php -------------------------------------------------------------------------------- /src/HeaderRefresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderRefresh.php -------------------------------------------------------------------------------- /src/HeaderRetryAfter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderRetryAfter.php -------------------------------------------------------------------------------- /src/HeaderSetCookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderSetCookie.php -------------------------------------------------------------------------------- /src/HeaderSunset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderSunset.php -------------------------------------------------------------------------------- /src/HeaderTrailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderTrailer.php -------------------------------------------------------------------------------- /src/HeaderTransferEncoding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderTransferEncoding.php -------------------------------------------------------------------------------- /src/HeaderVary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderVary.php -------------------------------------------------------------------------------- /src/HeaderWWWAuthenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderWWWAuthenticate.php -------------------------------------------------------------------------------- /src/HeaderWarning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/src/HeaderWarning.php -------------------------------------------------------------------------------- /tests/AbstractHeaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/AbstractHeaderTest.php -------------------------------------------------------------------------------- /tests/HeaderAccessControlAllowCredentialsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderAccessControlAllowCredentialsTest.php -------------------------------------------------------------------------------- /tests/HeaderAccessControlAllowHeadersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderAccessControlAllowHeadersTest.php -------------------------------------------------------------------------------- /tests/HeaderAccessControlAllowMethodsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderAccessControlAllowMethodsTest.php -------------------------------------------------------------------------------- /tests/HeaderAccessControlAllowOriginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderAccessControlAllowOriginTest.php -------------------------------------------------------------------------------- /tests/HeaderAccessControlExposeHeadersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderAccessControlExposeHeadersTest.php -------------------------------------------------------------------------------- /tests/HeaderAccessControlMaxAgeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderAccessControlMaxAgeTest.php -------------------------------------------------------------------------------- /tests/HeaderAgeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderAgeTest.php -------------------------------------------------------------------------------- /tests/HeaderAllowTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderAllowTest.php -------------------------------------------------------------------------------- /tests/HeaderCacheControlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderCacheControlTest.php -------------------------------------------------------------------------------- /tests/HeaderClearSiteDataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderClearSiteDataTest.php -------------------------------------------------------------------------------- /tests/HeaderConnectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderConnectionTest.php -------------------------------------------------------------------------------- /tests/HeaderContentDispositionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderContentDispositionTest.php -------------------------------------------------------------------------------- /tests/HeaderContentEncodingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderContentEncodingTest.php -------------------------------------------------------------------------------- /tests/HeaderContentLanguageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderContentLanguageTest.php -------------------------------------------------------------------------------- /tests/HeaderContentLengthTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderContentLengthTest.php -------------------------------------------------------------------------------- /tests/HeaderContentLocationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderContentLocationTest.php -------------------------------------------------------------------------------- /tests/HeaderContentMD5Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderContentMD5Test.php -------------------------------------------------------------------------------- /tests/HeaderContentRangeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderContentRangeTest.php -------------------------------------------------------------------------------- /tests/HeaderContentSecurityPolicyReportOnlyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderContentSecurityPolicyReportOnlyTest.php -------------------------------------------------------------------------------- /tests/HeaderContentSecurityPolicyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderContentSecurityPolicyTest.php -------------------------------------------------------------------------------- /tests/HeaderContentTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderContentTypeTest.php -------------------------------------------------------------------------------- /tests/HeaderCookieTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderCookieTest.php -------------------------------------------------------------------------------- /tests/HeaderCustomTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderCustomTest.php -------------------------------------------------------------------------------- /tests/HeaderDateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderDateTest.php -------------------------------------------------------------------------------- /tests/HeaderEtagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderEtagTest.php -------------------------------------------------------------------------------- /tests/HeaderExpiresTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderExpiresTest.php -------------------------------------------------------------------------------- /tests/HeaderKeepAliveTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderKeepAliveTest.php -------------------------------------------------------------------------------- /tests/HeaderLastModifiedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderLastModifiedTest.php -------------------------------------------------------------------------------- /tests/HeaderLinkTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderLinkTest.php -------------------------------------------------------------------------------- /tests/HeaderLocationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderLocationTest.php -------------------------------------------------------------------------------- /tests/HeaderRefreshTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderRefreshTest.php -------------------------------------------------------------------------------- /tests/HeaderRetryAfterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderRetryAfterTest.php -------------------------------------------------------------------------------- /tests/HeaderSetCookieTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderSetCookieTest.php -------------------------------------------------------------------------------- /tests/HeaderSunsetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderSunsetTest.php -------------------------------------------------------------------------------- /tests/HeaderTrailerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderTrailerTest.php -------------------------------------------------------------------------------- /tests/HeaderTransferEncodingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderTransferEncodingTest.php -------------------------------------------------------------------------------- /tests/HeaderVaryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderVaryTest.php -------------------------------------------------------------------------------- /tests/HeaderWWWAuthenticateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderWWWAuthenticateTest.php -------------------------------------------------------------------------------- /tests/HeaderWarningTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunrise-php/http-header-kit/HEAD/tests/HeaderWarningTest.php --------------------------------------------------------------------------------