composer.json 779 Bytes
Newer Older
Taylor Otwell committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
{
    "name": "symfony/http-foundation",
    "type": "library",
    "description": "Symfony HttpFoundation Component",
    "keywords": [],
    "homepage": "http://symfony.com",
    "license": "MIT",
    "authors": [
        {
            "name": "Fabien Potencier",
            "email": "fabien@symfony.com"
        },
        {
            "name": "Symfony Community",
            "homepage": "http://symfony.com/contributors"
        }
    ],
    "require": {
19
        "php": ">=5.3.3"
Taylor Otwell committed
20 21 22 23 24 25 26 27
    },
    "autoload": {
        "psr-0": {
            "Symfony\\Component\\HttpFoundation": "",
            "SessionHandlerInterface": "Symfony/Component/HttpFoundation/Resources/stubs"
        }
    },
    "target-dir": "Symfony/Component/HttpFoundation",
28
    "minimum-stability": "dev"
Taylor Otwell committed
29
}