friendship ended with social-app. php is my new best friend
1{ 2 "name": "chillerlan/php-http-message-utils", 3 "description": "PSR-7/17/18 utilities", 4 "license": "MIT", 5 "type": "library", 6 "keywords": [ 7 "http", "message", "psr-7", "psr-17", "psr-18" 8 ], 9 "authors": [ 10 { 11 "name": "smiley", 12 "email": "smiley@chillerlan.net", 13 "homepage": "https://github.com/codemasher" 14 } 15 ], 16 "support": { 17 "issues": "https://github.com/chillerlan/php-http-message-utils/issues", 18 "source": "https://github.com/chillerlan/php-http-message-utils" 19 }, 20 "minimum-stability": "stable", 21 "prefer-stable": true, 22 "provide": { 23 "psr/http-client-implementation": "1.0" 24 }, 25 "require": { 26 "php": "^8.1", 27 "ext-fileinfo": "*", 28 "ext-intl": "*", 29 "ext-json": "*", 30 "ext-mbstring": "*", 31 "ext-simplexml": "*", 32 "ext-zlib": "*", 33 "psr/http-client": "^1.0", 34 "psr/http-factory":"^1.1", 35 "psr/http-message": "^1.1 || ^2.0" 36 }, 37 "require-dev": { 38 "ext-curl": "*", 39 "chillerlan/phpunit-http": "^1.0", 40 "guzzlehttp/guzzle": "^7.8", 41 "phpmd/phpmd": "^2.15", 42 "phpstan/phpstan": "^1.11", 43 "phpstan/phpstan-deprecation-rules": "^1.2", 44 "phpunit/phpunit": "^10.5", 45 "slevomat/coding-standard": "^8.15", 46 "squizlabs/php_codesniffer": "^3.10" 47 }, 48 "suggest": { 49 "chillerlan/php-httpinterface": "A PSR-18 HTTP client implementation", 50 "chillerlan/psr-7": "A PSR-7/PSR-17 HTTP message and factory implementation.", 51 "chillerlan/php-oauth": "A PSR-7 OAuth client/handler that also acts as PSR-18 HTTP client" 52 }, 53 "autoload": { 54 "psr-4": { 55 "chillerlan\\HTTP\\Utils\\": "src" 56 } 57 }, 58 "autoload-dev": { 59 "psr-4": { 60 "chillerlan\\HTTPTest\\Utils\\": "tests" 61 } 62 }, 63 "scripts": { 64 "phpcs": "@php vendor/bin/phpcs", 65 "phpstan": "@php vendor/bin/phpstan", 66 "phpstan-baseline": "@php vendor/bin/phpstan --generate-baseline", 67 "phpunit": "@php vendor/bin/phpunit" 68 }, 69 "config": { 70 "lock": false, 71 "sort-packages": true, 72 "platform-check": true, 73 "allow-plugins": { 74 "dealerdirect/phpcodesniffer-composer-installer": true 75 } 76 } 77}