Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
{
2
    "name": "guzzlehttp/guzzle",
3
    "description": "Guzzle is a PHP HTTP client library",
4
    "keywords": [
5
        "framework",
6
        "http",
7
        "rest",
8
        "web service",
9
        "curl",
10
        "client",
11
        "HTTP client",
12
        "PSR-7",
13
        "PSR-18"
14
    ],
15
    "license": "MIT",
16
    "authors": [
17
        {
18
            "name": "Graham Campbell",
19
            "email": "hello@gjcampbell.co.uk",
20
            "homepage": "https://github.com/GrahamCampbell"
21
        },
22
        {
23
            "name": "Michael Dowling",
24
            "email": "mtdowling@gmail.com",
25
            "homepage": "https://github.com/mtdowling"
26
        },
27
        {
28
            "name": "Jeremy Lindblom",
29
            "email": "jeremeamia@gmail.com",
30
            "homepage": "https://github.com/jeremeamia"
31
        },
32
        {
33
            "name": "George Mponos",
34
            "email": "gmponos@gmail.com",
35
            "homepage": "https://github.com/gmponos"
36
        },
37
        {
38
            "name": "Tobias Nyholm",
39
            "email": "tobias.nyholm@gmail.com",
40
            "homepage": "https://github.com/Nyholm"
41
        },
42
        {
43
            "name": "Márk Sági-Kazár",
44
            "email": "mark.sagikazar@gmail.com",
45
            "homepage": "https://github.com/sagikazarmark"
46
        },
47
        {
48
            "name": "Tobias Schultze",
49
            "email": "webmaster@tubo-world.de",
50
            "homepage": "https://github.com/Tobion"
51
        }
52
    ],
1441 ariadna 53
    "repositories": [
54
        {
55
            "type": "package",
56
            "package": {
57
                "name": "guzzle/client-integration-tests",
58
                "version": "v3.0.2",
59
                "dist": {
60
                    "url": "https://codeload.github.com/guzzle/client-integration-tests/zip/2c025848417c1135031fdf9c728ee53d0a7ceaee",
61
                    "type": "zip"
62
                },
63
                "require": {
64
                    "php": "^7.2.5 || ^8.0",
65
                    "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.11",
66
                    "php-http/message": "^1.0 || ^2.0",
67
                    "guzzlehttp/psr7": "^1.7 || ^2.0",
68
                    "th3n3rd/cartesian-product": "^0.3"
69
                },
70
                "autoload": {
71
                    "psr-4": {
72
                        "Http\\Client\\Tests\\": "src/"
73
                    }
74
                },
75
                "bin": [
76
                    "bin/http_test_server"
77
                ]
78
            }
79
        }
80
    ],
1 efrain 81
    "require": {
82
        "php": "^7.2.5 || ^8.0",
83
        "ext-json": "*",
1441 ariadna 84
        "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
85
        "guzzlehttp/psr7": "^2.7.0",
1 efrain 86
        "psr/http-client": "^1.0",
87
        "symfony/deprecation-contracts": "^2.2 || ^3.0"
88
    },
89
    "provide": {
90
        "psr/http-client-implementation": "1.0"
91
    },
92
    "require-dev": {
93
        "ext-curl": "*",
1441 ariadna 94
        "bamarni/composer-bin-plugin": "^1.8.2",
95
        "guzzle/client-integration-tests": "3.0.2",
96
        "php-http/message-factory": "^1.1",
97
        "phpunit/phpunit": "^8.5.39 || ^9.6.20",
1 efrain 98
        "psr/log": "^1.1 || ^2.0 || ^3.0"
99
    },
100
    "suggest": {
101
        "ext-curl": "Required for CURL handler support",
102
        "ext-intl": "Required for Internationalized Domain Name (IDN) support",
103
        "psr/log": "Required for using the Log middleware"
104
    },
105
    "config": {
106
        "allow-plugins": {
107
            "bamarni/composer-bin-plugin": true
108
        },
109
        "preferred-install": "dist",
110
        "sort-packages": true
111
    },
112
    "extra": {
113
        "bamarni-bin": {
114
            "bin-links": true,
115
            "forward-command": false
116
        }
117
    },
118
    "autoload": {
119
        "psr-4": {
120
            "GuzzleHttp\\": "src/"
121
        },
122
        "files": [
123
            "src/functions_include.php"
124
        ]
125
    },
126
    "autoload-dev": {
127
        "psr-4": {
128
            "GuzzleHttp\\Tests\\": "tests/"
129
        }
130
    }
131
}