Proyectos de Subversion Moodle

Rev

| 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
    ],
53
    "require": {
54
        "php": "^7.2.5 || ^8.0",
55
        "ext-json": "*",
56
        "guzzlehttp/promises": "^1.5",
57
        "guzzlehttp/psr7": "^1.9 || ^2.4",
58
        "psr/http-client": "^1.0",
59
        "symfony/deprecation-contracts": "^2.2 || ^3.0"
60
    },
61
    "provide": {
62
        "psr/http-client-implementation": "1.0"
63
    },
64
    "require-dev": {
65
        "ext-curl": "*",
66
        "bamarni/composer-bin-plugin": "^1.8.1",
67
        "php-http/client-integration-tests": "^3.0",
68
        "phpunit/phpunit": "^8.5.29 || ^9.5.23",
69
        "psr/log": "^1.1 || ^2.0 || ^3.0"
70
    },
71
    "suggest": {
72
        "ext-curl": "Required for CURL handler support",
73
        "ext-intl": "Required for Internationalized Domain Name (IDN) support",
74
        "psr/log": "Required for using the Log middleware"
75
    },
76
    "config": {
77
        "allow-plugins": {
78
            "bamarni/composer-bin-plugin": true
79
        },
80
        "preferred-install": "dist",
81
        "sort-packages": true
82
    },
83
    "extra": {
84
        "bamarni-bin": {
85
            "bin-links": true,
86
            "forward-command": false
87
        },
88
        "branch-alias": {
89
            "dev-master": "7.5-dev"
90
        }
91
    },
92
    "autoload": {
93
        "psr-4": {
94
            "GuzzleHttp\\": "src/"
95
        },
96
        "files": [
97
            "src/functions_include.php"
98
        ]
99
    },
100
    "autoload-dev": {
101
        "psr-4": {
102
            "GuzzleHttp\\Tests\\": "tests/"
103
        }
104
    }
105
}