diff options
| author | Remi Collet <remi@remirepo.net> | 2020-10-28 13:51:49 +0100 | 
|---|---|---|
| committer | Remi Collet <remi@remirepo.net> | 2020-10-28 13:51:49 +0100 | 
| commit | 736966f098df9dde618fe8c0cbb6fdd9d6724806 (patch) | |
| tree | 221331f088742e183f9175ee29a427df5e0f1964 /src/Symfony/Contracts/HttpClient | |
Diffstat (limited to 'src/Symfony/Contracts/HttpClient')
| -rw-r--r-- | src/Symfony/Contracts/HttpClient/composer.json | 40 | 
1 files changed, 40 insertions, 0 deletions
| diff --git a/src/Symfony/Contracts/HttpClient/composer.json b/src/Symfony/Contracts/HttpClient/composer.json new file mode 100644 index 0000000..f4bcfb2 --- /dev/null +++ b/src/Symfony/Contracts/HttpClient/composer.json @@ -0,0 +1,40 @@ +{ +    "name": "symfony/http-client-contracts", +    "type": "library", +    "description": "Generic abstractions related to HTTP clients", +    "keywords": ["abstractions", "contracts", "decoupling", "interfaces", "interoperability", "standards"], +    "homepage": "https://symfony.com", +    "license": "MIT", +    "authors": [ +        { +            "name": "Nicolas Grekas", +            "email": "p@tchwork.com" +        }, +        { +            "name": "Symfony Community", +            "homepage": "https://symfony.com/contributors" +        } +    ], +    "require": { +        "php": ">=7.1.3" +    }, +    "suggest": { +        "symfony/http-client-implementation": "" +    }, +    "autoload": { +        "psr-4": { "Symfony\\Contracts\\HttpClient\\": "" } +    }, +    "minimum-stability": "dev", +    "extra": { +        "thanks": { +            "name": "symfony/contracts", +            "url": "https://github.com/symfony/contracts" +        } +    }, +    "extra": { +        "branch-version": "1.1", +        "branch-alias": { +            "dev-main": "1.1-dev" +        } +    } +} | 
