From 88b3ee8fd030742d337b287ffada1bde3a6006d9 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 28 Oct 2020 14:45:46 +0100 Subject: duplicate v1 --- src/HttpClient/composer.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/HttpClient/composer.json (limited to 'src/HttpClient/composer.json') diff --git a/src/HttpClient/composer.json b/src/HttpClient/composer.json new file mode 100644 index 0000000..2382aa7 --- /dev/null +++ b/src/HttpClient/composer.json @@ -0,0 +1,37 @@ +{ + "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": { + "branch-alias": { + "dev-master": "1.1-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + } +} -- cgit