summaryrefslogtreecommitdiffstats
path: root/Csrf/composer.json
blob: 41dc21c036c3f9aca3e5b0581cebdaf2a32f8085 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
    "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",
        "symfony/security-core": "~2.8|~3.0",
        "paragonie/random_compat" : "~1.0"
    },
    "require-dev": {
        "symfony/phpunit-bridge": "~2.8|~3.0",
        "symfony/http-foundation": "~2.8|~3.0"
    },
    "suggest": {
        "symfony/http-foundation": "For using the class SessionTokenStorage."
    },
    "autoload": {
        "psr-4": { "Symfony\\Component\\Security\\Csrf\\": "" }
    },
    "minimum-stability": "dev",
    "extra": {
        "branch-alias": {
            "dev-master": "3.0-dev"
        }
    }
}