From c0113290bb5f0c22ff8d9c5388078d1ebb1578ef Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 3 Jun 2019 13:34:43 +0200 Subject: v1.1.2 --- php-symfony-contracts.spec | 5 ++++- src/Cache/composer.json | 34 ++++++++++++++++++++++++++++++++++ src/EventDispatcher/composer.json | 34 ++++++++++++++++++++++++++++++++++ src/HttpClient/composer.json | 33 +++++++++++++++++++++++++++++++++ src/Service/composer.json | 34 ++++++++++++++++++++++++++++++++++ src/Translation/composer.json | 33 +++++++++++++++++++++++++++++++++ 6 files changed, 172 insertions(+), 1 deletion(-) create mode 100644 src/Cache/composer.json create mode 100644 src/EventDispatcher/composer.json create mode 100644 src/HttpClient/composer.json create mode 100644 src/Service/composer.json create mode 100644 src/Translation/composer.json diff --git a/php-symfony-contracts.spec b/php-symfony-contracts.spec index c076192..ca0917a 100644 --- a/php-symfony-contracts.spec +++ b/php-symfony-contracts.spec @@ -21,7 +21,7 @@ %global with_tests 0%{!?_without_tests:1} Name: php-%{pk_vendor}-%{pk_project} -Version: 1.1.1 +Version: 1.1.2 Release: 1%{?gh_date:.%{gh_date}git%{gh_short}}%{?dist} Summary: A set of abstractions extracted out of the Symfony @@ -165,6 +165,9 @@ exit $ret %changelog +* Mon Jun 3 2019 Remi Collet - 1.1.2-1 +- update to 1.1.2 (no change) + * Tue May 28 2019 Remi Collet - 1.1.1-1 - update to 1.1.1 diff --git a/src/Cache/composer.json b/src/Cache/composer.json new file mode 100644 index 0000000..d5d7e99 --- /dev/null +++ b/src/Cache/composer.json @@ -0,0 +1,34 @@ +{ + "name": "symfony/cache-contracts", + "type": "library", + "description": "Generic abstractions related to caching", + "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": { + "psr/cache": "", + "symfony/cache-implementation": "" + }, + "autoload": { + "psr-4": { "Symfony\\Contracts\\Cache\\": "" } + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + } +} diff --git a/src/EventDispatcher/composer.json b/src/EventDispatcher/composer.json new file mode 100644 index 0000000..55802a4 --- /dev/null +++ b/src/EventDispatcher/composer.json @@ -0,0 +1,34 @@ +{ + "name": "symfony/event-dispatcher-contracts", + "type": "library", + "description": "Generic abstractions related to dispatching event", + "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": { + "psr/event-dispatcher": "", + "symfony/event-dispatcher-implementation": "" + }, + "autoload": { + "psr-4": { "Symfony\\Contracts\\EventDispatcher\\": "" } + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + } +} diff --git a/src/HttpClient/composer.json b/src/HttpClient/composer.json new file mode 100644 index 0000000..4dc9b2d --- /dev/null +++ b/src/HttpClient/composer.json @@ -0,0 +1,33 @@ +{ + "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" + } + } +} diff --git a/src/Service/composer.json b/src/Service/composer.json new file mode 100644 index 0000000..5434117 --- /dev/null +++ b/src/Service/composer.json @@ -0,0 +1,34 @@ +{ + "name": "symfony/service-contracts", + "type": "library", + "description": "Generic abstractions related to writing services", + "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": { + "psr/container": "", + "symfony/service-implementation": "" + }, + "autoload": { + "psr-4": { "Symfony\\Contracts\\Service\\": "" } + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + } +} diff --git a/src/Translation/composer.json b/src/Translation/composer.json new file mode 100644 index 0000000..09749d3 --- /dev/null +++ b/src/Translation/composer.json @@ -0,0 +1,33 @@ +{ + "name": "symfony/translation-contracts", + "type": "library", + "description": "Generic abstractions related to translation", + "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/translation-implementation": "" + }, + "autoload": { + "psr-4": { "Symfony\\Contracts\\Translation\\": "" } + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + } +} -- cgit