From 736966f098df9dde618fe8c0cbb6fdd9d6724806 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 28 Oct 2020 13:51:49 +0100 Subject: duplicate v4 --- src/Symfony/Component/Security/Core/composer.json | 52 +++++++++++++++++ src/Symfony/Component/Security/Csrf/composer.json | 38 +++++++++++++ src/Symfony/Component/Security/Guard/composer.json | 33 +++++++++++ src/Symfony/Component/Security/Http/composer.json | 45 +++++++++++++++ src/Symfony/Component/Security/composer.json | 65 ++++++++++++++++++++++ 5 files changed, 233 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..e1bc4c2 --- /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": ">=7.1.3", + "symfony/event-dispatcher-contracts": "^1.1|^2", + "symfony/service-contracts": "^1.1.6|^2" + }, + "require-dev": { + "psr/container": "^1.0", + "symfony/event-dispatcher": "^4.3", + "symfony/expression-language": "^3.4|^4.0|^5.0", + "symfony/http-foundation": "^3.4|^4.0|^5.0", + "symfony/ldap": "^4.4|^5.0", + "symfony/validator": "^3.4.31|^4.3.4|^5.0", + "psr/log": "~1.0" + }, + "conflict": { + "symfony/event-dispatcher": "<4.3|>=5", + "symfony/security-guard": "<4.3", + "symfony/ldap": "<4.4" + }, + "suggest": { + "psr/container-implementation": "To instantiate the Security class", + "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" +} diff --git a/src/Symfony/Component/Security/Csrf/composer.json b/src/Symfony/Component/Security/Csrf/composer.json new file mode 100644 index 0000000..adfb1ef --- /dev/null +++ b/src/Symfony/Component/Security/Csrf/composer.json @@ -0,0 +1,38 @@ +{ + "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": ">=7.1.3", + "symfony/security-core": "^3.4|^4.0|^5.0" + }, + "require-dev": { + "symfony/http-foundation": "^3.4|^4.0|^5.0" + }, + "conflict": { + "symfony/http-foundation": "<3.4" + }, + "suggest": { + "symfony/http-foundation": "For using the class SessionTokenStorage." + }, + "autoload": { + "psr-4": { "Symfony\\Component\\Security\\Csrf\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "minimum-stability": "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..942d0e4 --- /dev/null +++ b/src/Symfony/Component/Security/Guard/composer.json @@ -0,0 +1,33 @@ +{ + "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": ">=7.1.3", + "symfony/security-core": "^3.4.22|^4.2.3|^5.0", + "symfony/security-http": "^4.4.1" + }, + "require-dev": { + "psr/log": "~1.0" + }, + "autoload": { + "psr-4": { "Symfony\\Component\\Security\\Guard\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "minimum-stability": "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..533365b --- /dev/null +++ b/src/Symfony/Component/Security/Http/composer.json @@ -0,0 +1,45 @@ +{ + "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": ">=7.1.3", + "symfony/security-core": "^4.4.8", + "symfony/http-foundation": "^3.4.40|^4.4.7|^5.0.7", + "symfony/http-kernel": "^4.4", + "symfony/property-access": "^3.4|^4.0|^5.0" + }, + "require-dev": { + "symfony/routing": "^3.4|^4.0|^5.0", + "symfony/security-csrf": "^3.4.11|^4.0.11|^5.0", + "psr/log": "~1.0" + }, + "conflict": { + "symfony/event-dispatcher": ">=5", + "symfony/security-csrf": "<3.4.11|~4.0,<4.0.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" +} diff --git a/src/Symfony/Component/Security/composer.json b/src/Symfony/Component/Security/composer.json new file mode 100644 index 0000000..2e4ca63 --- /dev/null +++ b/src/Symfony/Component/Security/composer.json @@ -0,0 +1,65 @@ +{ + "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": ">=7.1.3", + "symfony/event-dispatcher-contracts": "^1.1|^2", + "symfony/http-foundation": "^3.4.40|^4.4.7|^5.0.7", + "symfony/http-kernel": "^4.4", + "symfony/property-access": "^3.4|^4.0|^5.0", + "symfony/service-contracts": "^1.1|^2" + }, + "replace": { + "symfony/security-core": "self.version", + "symfony/security-csrf": "self.version", + "symfony/security-guard": "self.version", + "symfony/security-http": "self.version" + }, + "require-dev": { + "psr/container": "^1.0", + "symfony/finder": "^3.4|^4.0|^5.0", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-icu": "~1.0", + "symfony/routing": "^3.4|^4.0|^5.0", + "symfony/validator": "^3.4.31|^4.3.4|^5.0", + "symfony/expression-language": "^3.4|^4.0|^5.0", + "symfony/ldap": "^4.4|^5.0", + "psr/log": "~1.0" + }, + "conflict": { + "symfony/event-dispatcher": ">=5", + "symfony/ldap": "<4.4" + }, + "suggest": { + "psr/container-implementation": "To instantiate the Security class", + "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" +} -- cgit