├── .editorconfig ├── .php_cs ├── .php_cs.cache ├── .phpunit.result.cache ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml.dist ├── phpunit.xml.dist.bak └── src ├── Httpstatus.php ├── Httpstatuscodes.php ├── LanguageInterface.php └── languages ├── de.php ├── en.php └── fr.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasoppermann/http-status/HEAD/.editorconfig -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasoppermann/http-status/HEAD/.php_cs -------------------------------------------------------------------------------- /.php_cs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasoppermann/http-status/HEAD/.php_cs.cache -------------------------------------------------------------------------------- /.phpunit.result.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasoppermann/http-status/HEAD/.phpunit.result.cache -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasoppermann/http-status/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasoppermann/http-status/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasoppermann/http-status/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasoppermann/http-status/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasoppermann/http-status/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasoppermann/http-status/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasoppermann/http-status/HEAD/phpunit.xml.dist.bak -------------------------------------------------------------------------------- /src/Httpstatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasoppermann/http-status/HEAD/src/Httpstatus.php -------------------------------------------------------------------------------- /src/Httpstatuscodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasoppermann/http-status/HEAD/src/Httpstatuscodes.php -------------------------------------------------------------------------------- /src/LanguageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasoppermann/http-status/HEAD/src/LanguageInterface.php -------------------------------------------------------------------------------- /src/languages/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasoppermann/http-status/HEAD/src/languages/de.php -------------------------------------------------------------------------------- /src/languages/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasoppermann/http-status/HEAD/src/languages/en.php -------------------------------------------------------------------------------- /src/languages/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasoppermann/http-status/HEAD/src/languages/fr.php --------------------------------------------------------------------------------