diff options
| author | Remi Collet <remi@remirepo.net> | 2019-03-04 09:59:17 +0100 | 
|---|---|---|
| committer | Remi Collet <remi@remirepo.net> | 2019-03-04 09:59:17 +0100 | 
| commit | 5679ca3e5d8b28317cdba6e87b2e11f6dbaad6c8 (patch) | |
| tree | ce395b6246e97ebd2435f96545066e2f26a045a1 /src/Symfony/Bundle/SecurityBundle | |
| parent | a7999bed8b592e2e5c20c5058b52674c38fc40e0 (diff) | |
add all composer.json
Diffstat (limited to 'src/Symfony/Bundle/SecurityBundle')
| -rw-r--r-- | src/Symfony/Bundle/SecurityBundle/composer.json | 70 | 
1 files changed, 70 insertions, 0 deletions
diff --git a/src/Symfony/Bundle/SecurityBundle/composer.json b/src/Symfony/Bundle/SecurityBundle/composer.json new file mode 100644 index 0000000..5a03f8f --- /dev/null +++ b/src/Symfony/Bundle/SecurityBundle/composer.json @@ -0,0 +1,70 @@ +{ +    "name": "symfony/security-bundle", +    "type": "symfony-bundle", +    "description": "Symfony SecurityBundle", +    "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", +        "ext-xml": "*", +        "symfony/config": "^4.2", +        "symfony/dependency-injection": "^4.2", +        "symfony/http-kernel": "^4.1", +        "symfony/security-core": "~4.2", +        "symfony/security-csrf": "~4.2", +        "symfony/security-guard": "~4.2", +        "symfony/security-http": "~4.2" +    }, +    "require-dev": { +        "symfony/asset": "~3.4|~4.0", +        "symfony/browser-kit": "~4.2", +        "symfony/console": "~3.4|~4.0", +        "symfony/css-selector": "~3.4|~4.0", +        "symfony/dom-crawler": "~3.4|~4.0", +        "symfony/event-dispatcher": "~3.4|~4.0", +        "symfony/form": "~3.4|~4.0", +        "symfony/framework-bundle": "~4.2", +        "symfony/http-foundation": "~3.4|~4.0", +        "symfony/translation": "~3.4|~4.0", +        "symfony/twig-bundle": "~4.2", +        "symfony/twig-bridge": "~3.4|~4.0", +        "symfony/process": "~3.4|~4.0", +        "symfony/validator": "~3.4|~4.0", +        "symfony/var-dumper": "~3.4|~4.0", +        "symfony/yaml": "~3.4|~4.0", +        "symfony/expression-language": "~3.4|~4.0", +        "doctrine/doctrine-bundle": "~1.5", +        "twig/twig": "~1.34|~2.4" +    }, +    "conflict": { +        "symfony/browser-kit": "<4.2", +        "symfony/twig-bundle": "<4.2", +        "symfony/var-dumper": "<3.4", +        "symfony/event-dispatcher": "<3.4", +        "symfony/framework-bundle": "<4.2", +        "symfony/console": "<3.4" +    }, +    "autoload": { +        "psr-4": { "Symfony\\Bundle\\SecurityBundle\\": "" }, +        "exclude-from-classmap": [ +            "/Tests/" +        ] +    }, +    "minimum-stability": "dev", +    "extra": { +        "branch-alias": { +            "dev-master": "4.2-dev" +        } +    } +}  | 
