Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 28-Jun-2022 | - | ||||
src/ | H | 28-Jun-2022 | - | 47 | 34 | |
LICENSE | H A D | 21-Jun-2022 | 1.1 KiB | 22 | 17 | |
README.md | H A D | 21-Jun-2022 | 1.1 KiB | 28 | 18 | |
composer.json | H A D | 21-Jun-2022 | 465 | 27 | 26 |
README.md
1getallheaders 2============= 3 4PHP `getallheaders()` polyfill. Compatible with PHP >= 5.3. 5 6[![Build Status](https://travis-ci.org/ralouphie/getallheaders.svg?branch=master)](https://travis-ci.org/ralouphie/getallheaders) 7[![Coverage Status](https://coveralls.io/repos/ralouphie/getallheaders/badge.png?branch=master)](https://coveralls.io/r/ralouphie/getallheaders?branch=master) 8[![Latest Stable Version](https://poser.pugx.org/ralouphie/getallheaders/v/stable.png)](https://packagist.org/packages/ralouphie/getallheaders) 9[![Latest Unstable Version](https://poser.pugx.org/ralouphie/getallheaders/v/unstable.png)](https://packagist.org/packages/ralouphie/getallheaders) 10[![License](https://poser.pugx.org/ralouphie/getallheaders/license.png)](https://packagist.org/packages/ralouphie/getallheaders) 11 12 13This is a simple polyfill for [`getallheaders()`](http://www.php.net/manual/en/function.getallheaders.php). 14 15## Install 16 17For PHP version **`>= 5.6`**: 18 19``` 20composer require ralouphie/getallheaders 21``` 22 23For PHP version **`< 5.6`**: 24 25``` 26composer require ralouphie/getallheaders "^2" 27``` 28