From 272cec2a3ecf97d41ea038059b69cc2e9095210b Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 4 Mar 2019 09:55:17 +0100 Subject: add all composer.json --- src/Symfony/Component/Security/Core/composer.json | 51 +++++++++++++++++ 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 | 66 ++++++++++++++++++++++ 5 files changed, 252 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..c23755a --- /dev/null +++ b/src/Symfony/Component/Security/Core/composer.json @@ -0,0 +1,51 @@ +{ + "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.5.9|>=7.0.8", + "symfony/polyfill-php56": "~1.0" + }, + "require-dev": { + "psr/container": "^1.0", + "symfony/event-dispatcher": "~2.8|~3.0|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/http-foundation": "~2.8|~3.0|~4.0", + "symfony/ldap": "~3.1|~4.0", + "symfony/validator": "^3.2.5|~4.0", + "psr/log": "~1.0" + }, + "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", + "extra": { + "branch-alias": { + "dev-master": "3.4-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..5b27fee --- /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.5.9|>=7.0.8", + "symfony/polyfill-php56": "~1.0", + "symfony/polyfill-php70": "~1.0", + "symfony/security-core": "~2.8|~3.0|~4.0" + }, + "require-dev": { + "symfony/http-foundation": "^2.8.31|~3.3.13|~3.4|~4.0" + }, + "conflict": { + "symfony/http-foundation": "<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": "3.4-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..de14c9b --- /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.5.9|>=7.0.8", + "symfony/security-core": "~2.8|~3.0|~4.0", + "symfony/security-http": "^3.3.13|~4.0" + }, + "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": "3.4-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..9ede332 --- /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.5.9|>=7.0.8", + "symfony/security-core": "~3.2|~4.0", + "symfony/event-dispatcher": "~2.8|~3.0|~4.0", + "symfony/http-foundation": "~2.8|~3.0|~4.0", + "symfony/http-kernel": "~3.3|~4.0", + "symfony/polyfill-php56": "~1.0", + "symfony/polyfill-php70": "~1.0", + "symfony/property-access": "~2.8|~3.0|~4.0" + }, + "require-dev": { + "symfony/routing": "~2.8|~3.0|~4.0", + "symfony/security-csrf": "^2.8.41|~3.3.17|~3.4.11|^4.0.11", + "psr/log": "~1.0" + }, + "conflict": { + "symfony/security-csrf": "<2.8.41|~3.0,<3.3.17|~3.4,<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", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + } +} diff --git a/src/Symfony/Component/Security/composer.json b/src/Symfony/Component/Security/composer.json new file mode 100644 index 0000000..cdcbba7 --- /dev/null +++ b/src/Symfony/Component/Security/composer.json @@ -0,0 +1,66 @@ +{ + "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.5.9|>=7.0.8", + "symfony/event-dispatcher": "~2.8|~3.0|~4.0", + "symfony/http-foundation": "^2.8.31|~3.3.13|~3.4|~4.0", + "symfony/http-kernel": "~3.3|~4.0", + "symfony/polyfill-php56": "~1.0", + "symfony/polyfill-php70": "~1.0", + "symfony/property-access": "~2.8|~3.0|~4.0" + }, + "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": "~2.8|~3.0|~4.0", + "symfony/polyfill-intl-icu": "~1.0", + "symfony/routing": "~2.8|~3.0|~4.0", + "symfony/validator": "^3.2.5|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/ldap": "~3.1|~4.0", + "psr/log": "~1.0" + }, + "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", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + } +} -- cgit