aboutsummaryrefslogtreecommitdiff
path: root/composer.json
blob: 14c8f165c6e5d621e433c02fe36ce73afabc9d7c (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
{
    "name": "snilius/twig-sort-by-field",
    "description": "A Twig Extension filter to sort an array of entries (objects or arrays) by the specified field",
    "require-dev": {
        "php": ">=5.5.9",
        "phpunit/phpunit": "~4.5",
        "twig/extensions": "~1.2",
        "doctrine/collections": "^1.3"
    },
    "license": "Apache-2.0",
    "authors": [
        {
            "name": "Victor Häggqvist",
            "email": "[email protected]"
        }
    ],
    "autoload": {
        "psr-4": {
            "Snilius\\Twig\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Snilius\\Twig\\Tests\\": "test/"
        },
        "psr-0": {
            "": "test/"
        }
    }
}