summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 8971a983bd537122b2ad6ba6d4684ea15f499fa7 (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
40
41
{
    "name": "league/plates",
    "description": "Plates, the native PHP template system that's fast, easy to use and easy to extend.",
    "keywords": [
        "league",
        "package",
        "templating",
        "templates",
        "views"
    ],
    "homepage": "http://platesphp.com",
    "license": "MIT",
    "authors" : [
        {
            "name": "Jonathan Reinink",
            "email": "jonathan@reinink.ca",
            "role": "Developer"
        }
    ],
    "require" : {
        "php": "^5.3 | ^7.0"
    },
    "require-dev": {
        "mikey179/vfsStream": "^1.4",
        "phpunit/phpunit": "~4.0",
        "squizlabs/php_codesniffer": "~1.5"
    },
    "autoload": {
        "psr-4": {
            "League\\Plates\\": "src"
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "3.0-dev"
        }
    },
    "scripts": {
        "test": "phpunit"
    }
}