1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
| {
| "name": "symfony/psr-http-message-bridge",
| "type": "symfony-bridge",
| "description": "PSR HTTP message bridge",
| "keywords": ["http", "psr-7", "psr-17", "http-message"],
| "homepage": "http://symfony.com",
| "license": "MIT",
| "authors": [
| {
| "name": "Fabien Potencier",
| "email": "fabien@symfony.com"
| },
| {
| "name": "Symfony Community",
| "homepage": "http://symfony.com/contributors"
| }
| ],
| "require": {
| "php": "^7.1",
| "psr/http-message": "^1.0",
| "symfony/http-foundation": "^4.4 || ^5.0"
| },
| "require-dev": {
| "symfony/phpunit-bridge": "^4.4 || ^5.0",
| "nyholm/psr7": "^1.1",
| "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
| },
| "suggest": {
| "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
| },
| "autoload": {
| "psr-4": { "Symfony\\Bridge\\PsrHttpMessage\\": "" },
| "exclude-from-classmap": [
| "/Tests/"
| ]
| },
| "extra": {
| "branch-alias": {
| "dev-master": "1.3-dev"
| }
| }
| }
|
|