From a667050a507f835f73edc289f642ec4028a3d501 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 18 Apr 2019 08:43:33 +0200 Subject: v2.8.51 --- src/Symfony/Component/Security/Core/composer.json | 52 ++++++++++++++++ src/Symfony/Component/Security/Csrf/composer.json | 45 ++++++++++++++ src/Symfony/Component/Security/Guard/composer.json | 38 ++++++++++++ src/Symfony/Component/Security/Http/composer.json | 52 ++++++++++++++++ src/Symfony/Component/Security/composer.json | 70 ++++++++++++++++++++++ 5 files changed, 257 insertions(+) create mode 100644 src/Symfony/Component/Security/Core/composer.json create mode 100644 src/Symfony/Component/Security/Csrf/composer.json create mode 100644 src/Symfony/Component/Security/Guard/composer.json create mode 100644 src/Symfony/Component/Security/Http/composer.json create mode 100644 src/Symfony/Component/Security/composer.json (limited to 'src/Symfony/Component/Security') diff --git a/src/Symfony/Component/Security/Core/composer.json b/src/Symfony/Component/Security/Core/composer.json new file mode 100644 index 0000000..9553170 --- /dev/null +++ b/src/Symfony/Component/Security/Core/composer.json @@ -0,0 +1,52 @@ +{ + "name": "symfony/security-core", + "type": "library", + "description": "Symfony Security Component - Core Library", + "keywords": [], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": ">=5.3.9", + "symfony/polyfill-php55": "~1.0", + "symfony/polyfill-php56": "~1.0", + "symfony/polyfill-php70": "~1.0", + "symfony/polyfill-util": "~1.0" + }, + "require-dev": { + "symfony/event-dispatcher": "~2.1|~3.0.0", + "symfony/expression-language": "~2.6|~3.0.0", + "symfony/http-foundation": "~2.4|~3.0.0", + "symfony/ldap": "~2.8|~3.0.0", + "symfony/validator": "~2.7.25|^2.8.18|~3.2.5", + "psr/log": "~1.0" + }, + "suggest": { + "symfony/event-dispatcher": "", + "symfony/http-foundation": "", + "symfony/validator": "For using the user password constraint", + "symfony/expression-language": "For using the expression voter", + "symfony/ldap": "For using LDAP integration" + }, + "autoload": { + "psr-4": { "Symfony\\Component\\Security\\Core\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "2.8-dev" + } + } +} diff --git a/src/Symfony/Component/Security/Csrf/composer.json b/src/Symfony/Component/Security/Csrf/composer.json new file mode 100644 index 0000000..a015c52 --- /dev/null +++ b/src/Symfony/Component/Security/Csrf/composer.json @@ -0,0 +1,45 @@ +{ + "name": "symfony/security-csrf", + "type": "library", + "description": "Symfony Security Component - CSRF Library", + "keywords": [], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": ">=5.3.9", + "symfony/polyfill-php56": "~1.0", + "symfony/polyfill-php70": "~1.0", + "symfony/security-core": "^2.8.41|^3.3.17" + }, + "require-dev": { + "symfony/http-foundation": "^2.7.38|~3.3.13" + }, + "conflict": { + "symfony/http-foundation": "<2.7.38|~2.8,<2.8.31|~3.3,<3.3.13" + }, + "suggest": { + "symfony/http-foundation": "For using the class SessionTokenStorage." + }, + "autoload": { + "psr-4": { "Symfony\\Component\\Security\\Csrf\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "2.8-dev" + } + } +} diff --git a/src/Symfony/Component/Security/Guard/composer.json b/src/Symfony/Component/Security/Guard/composer.json new file mode 100644 index 0000000..5f627c1 --- /dev/null +++ b/src/Symfony/Component/Security/Guard/composer.json @@ -0,0 +1,38 @@ +{ + "name": "symfony/security-guard", + "type": "library", + "description": "Symfony Security Component - Guard", + "keywords": [], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": ">=5.3.9", + "symfony/security-core": "^2.8.41|^3.3.17", + "symfony/security-http": "^2.8.31|^3.3.13" + }, + "require-dev": { + "psr/log": "~1.0" + }, + "autoload": { + "psr-4": { "Symfony\\Component\\Security\\Guard\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "2.8-dev" + } + } +} diff --git a/src/Symfony/Component/Security/Http/composer.json b/src/Symfony/Component/Security/Http/composer.json new file mode 100644 index 0000000..925c3da --- /dev/null +++ b/src/Symfony/Component/Security/Http/composer.json @@ -0,0 +1,52 @@ +{ + "name": "symfony/security-http", + "type": "library", + "description": "Symfony Security Component - HTTP Integration", + "keywords": [], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": ">=5.3.9", + "symfony/security-core": "^2.8.41", + "symfony/event-dispatcher": "~2.1|~3.0.0", + "symfony/http-foundation": "~2.4|~3.0.0", + "symfony/http-kernel": "~2.4|~3.0.0", + "symfony/polyfill-php56": "~1.0", + "symfony/polyfill-php70": "~1.0", + "symfony/property-access": "~2.3|~3.0.0" + }, + "require-dev": { + "symfony/routing": "~2.2|~3.0.0", + "symfony/security-csrf": "^2.8.41|^3.3.17", + "psr/log": "~1.0" + }, + "conflict": { + "symfony/security-csrf": ">=2.8.0,<2.8.41 || >=3.0.0,<3.3.17 || >=3.4.0,<3.4.11" + }, + "suggest": { + "symfony/security-csrf": "For using tokens to protect authentication/logout attempts", + "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs" + }, + "autoload": { + "psr-4": { "Symfony\\Component\\Security\\Http\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "2.8-dev" + } + } +} diff --git a/src/Symfony/Component/Security/composer.json b/src/Symfony/Component/Security/composer.json new file mode 100644 index 0000000..0a862ad --- /dev/null +++ b/src/Symfony/Component/Security/composer.json @@ -0,0 +1,70 @@ +{ + "name": "symfony/security", + "type": "library", + "description": "Symfony Security Component", + "keywords": [], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": ">=5.3.9", + "symfony/security-acl": "~2.7|~3.0.0", + "symfony/event-dispatcher": "~2.2|~3.0.0", + "symfony/http-foundation": "^2.7.38|~3.3.13", + "symfony/http-kernel": "~2.4|~3.0.0", + "symfony/polyfill-php55": "~1.0", + "symfony/polyfill-php56": "~1.0", + "symfony/polyfill-php70": "~1.0", + "symfony/polyfill-util": "~1.0", + "symfony/property-access": "~2.3|~3.0.0" + }, + "replace": { + "symfony/security-core": "self.version", + "symfony/security-csrf": "self.version", + "symfony/security-guard": "self.version", + "symfony/security-http": "self.version" + }, + "require-dev": { + "symfony/finder": "~2.3|~3.0.0", + "symfony/polyfill-intl-icu": "~1.0", + "symfony/routing": "~2.2|~3.0.0", + "symfony/validator": "~2.7.25|^2.8.18|~3.2.5", + "psr/log": "~1.0", + "symfony/expression-language": "~2.6|~3.0.0", + "symfony/ldap": "~2.8|~3.0.0" + }, + "conflict": { + "symfony/http-foundation": "~2.8,<2.8.31" + }, + "suggest": { + "symfony/form": "", + "symfony/validator": "For using the user password constraint", + "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs", + "symfony/expression-language": "For using the expression voter", + "symfony/ldap": "For using the LDAP user and authentication providers" + }, + "autoload": { + "psr-4": { "Symfony\\Component\\Security\\": "" }, + "exclude-from-classmap": [ + "/Core/Tests/", + "/Csrf/Tests/", + "/Guard/Tests/", + "/Http/Tests/" + ] + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "2.8-dev" + } + } +} -- cgit