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
|
{
"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-dev": {
"phpunit/phpunit": "~4.0",
"mikey179/vfsStream": "~1.4.0",
"squizlabs/php_codesniffer": "~1.5"
},
"autoload": {
"psr-4": {
"League\\Plates\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}
|