From b52149fd2f5dbb8862ae7cd3e29723bf414b9678 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 18 Jul 2019 16:32:31 +0200 Subject: [PATCH] [Security] drop the component --- composer.json | 2 - src/Symfony/Component/Security/LICENSE | 19 ------ src/Symfony/Component/Security/README.md | 18 ----- src/Symfony/Component/Security/composer.json | 66 ------------------- .../Component/Security/phpunit.xml.dist | 35 ---------- 5 files changed, 140 deletions(-) delete mode 100644 src/Symfony/Component/Security/LICENSE delete mode 100644 src/Symfony/Component/Security/README.md delete mode 100644 src/Symfony/Component/Security/composer.json delete mode 100644 src/Symfony/Component/Security/phpunit.xml.dist diff --git a/composer.json b/composer.json index 2e6fd64f17..913800d6db 100644 --- a/composer.json +++ b/composer.json @@ -76,7 +76,6 @@ "symfony/property-info": "self.version", "symfony/proxy-manager-bridge": "self.version", "symfony/routing": "self.version", - "symfony/security": "self.version", "symfony/security-core": "self.version", "symfony/security-csrf": "self.version", "symfony/security-guard": "self.version", @@ -94,7 +93,6 @@ "symfony/var-exporter": "self.version", "symfony/web-link": "self.version", "symfony/web-profiler-bundle": "self.version", - "symfony/web-server-bundle": "self.version", "symfony/workflow": "self.version", "symfony/yaml": "self.version" }, diff --git a/src/Symfony/Component/Security/LICENSE b/src/Symfony/Component/Security/LICENSE deleted file mode 100644 index a677f43763..0000000000 --- a/src/Symfony/Component/Security/LICENSE +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2004-2019 Fabien Potencier - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is furnished -to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/src/Symfony/Component/Security/README.md b/src/Symfony/Component/Security/README.md deleted file mode 100644 index 87ce3d9ea7..0000000000 --- a/src/Symfony/Component/Security/README.md +++ /dev/null @@ -1,18 +0,0 @@ -Security Component -================== - -The Security component provides a complete security system for your web -application. It ships with facilities for authenticating using HTTP basic, -interactive form login or X.509 certificate login, but -also allows you to implement your own authentication strategies. Furthermore, -the component provides ways to authorize authenticated users based on their -roles. - -Resources ---------- - - * [Documentation](https://symfony.com/doc/current/components/security/index.html) - * [Contributing](https://symfony.com/doc/current/contributing/index.html) - * [Report issues](https://github.com/symfony/symfony/issues) and - [send Pull Requests](https://github.com/symfony/symfony/pulls) - in the [main Symfony repository](https://github.com/symfony/symfony) diff --git a/src/Symfony/Component/Security/composer.json b/src/Symfony/Component/Security/composer.json deleted file mode 100644 index 1f0563ffdd..0000000000 --- a/src/Symfony/Component/Security/composer.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "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.2.9", - "symfony/event-dispatcher-contracts": "^1.1", - "symfony/http-foundation": "^4.4|^5.0", - "symfony/http-kernel": "^4.4|^5.0", - "symfony/property-access": "^4.4|^5.0", - "symfony/service-contracts": "^1.1" - }, - "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": "^4.4|^5.0", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-intl-icu": "~1.0", - "symfony/routing": "^4.4|^5.0", - "symfony/validator": "^4.4|^5.0", - "symfony/expression-language": "^4.4|^5.0", - "symfony/ldap": "^4.4|^5.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": "5.0-dev" - } - } -} diff --git a/src/Symfony/Component/Security/phpunit.xml.dist b/src/Symfony/Component/Security/phpunit.xml.dist deleted file mode 100644 index c6d083afee..0000000000 --- a/src/Symfony/Component/Security/phpunit.xml.dist +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - ./Tests/ - ./*/Tests/ - - - - - - ./ - - ./Resources - ./Tests - ./vendor - ./*/Resources - ./*/Tests - ./*/vendor - - - -