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/promises",
3
    "description": "Guzzle promises library",
4
    "keywords": ["promise"],
5
    "license": "MIT",
6
    "authors": [
7
        {
8
            "name": "Graham Campbell",
9
            "email": "hello@gjcampbell.co.uk",
10
            "homepage": "https://github.com/GrahamCampbell"
11
        },
12
        {
13
            "name": "Michael Dowling",
14
            "email": "mtdowling@gmail.com",
15
            "homepage": "https://github.com/mtdowling"
16
        },
17
        {
18
            "name": "Tobias Nyholm",
19
            "email": "tobias.nyholm@gmail.com",
20
            "homepage": "https://github.com/Nyholm"
21
        },
22
        {
23
            "name": "Tobias Schultze",
24
            "email": "webmaster@tubo-world.de",
25
            "homepage": "https://github.com/Tobion"
26
        }
27
    ],
28
    "require": {
1441 ariadna 29
        "php": "^7.2.5 || ^8.0"
1 efrain 30
    },
31
    "require-dev": {
1441 ariadna 32
        "bamarni/composer-bin-plugin": "^1.8.2",
33
        "phpunit/phpunit": "^8.5.39 || ^9.6.20"
1 efrain 34
    },
35
    "autoload": {
36
        "psr-4": {
37
            "GuzzleHttp\\Promise\\": "src/"
1441 ariadna 38
        }
1 efrain 39
    },
40
    "autoload-dev": {
41
        "psr-4": {
42
            "GuzzleHttp\\Promise\\Tests\\": "tests/"
43
        }
44
    },
45
    "extra": {
1441 ariadna 46
        "bamarni-bin": {
47
            "bin-links": true,
48
            "forward-command": false
1 efrain 49
        }
50
    },
51
    "config": {
1441 ariadna 52
        "allow-plugins": {
53
            "bamarni/composer-bin-plugin": true
54
        },
1 efrain 55
        "preferred-install": "dist",
56
        "sort-packages": true
57
    }
58
}