forked from hackaugusto/jade.php
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
39 lines (39 loc) · 1.02 KB
/
composer.json
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": "lukegb/jade.php",
"description": "HAML-like template engine for PHP 5.3",
"keywords": ["jade", "minification","template"],
"homepage": "https://github.com/lukegb/jade.php",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Konstantin Kudryasho",
"email": "konstantin.kudryashov@knplabs.com",
"homepage": "http://about.me/everzet",
"role": "Developer"
},
{
"name": "Janez Troha",
"email": "janez.troha@gmail.com",
"homepage": "http://flavors.me/dz0ny",
"role": "Maintainer"
},
{
"name": "Luke GB",
"email": "git@lukegb.com",
"homepage": "http://twitter.com/lukegb",
"role": "Maintainer"
}
],
"require": {
"php": ">=5.3.0"
},
"autoload": {
"psr-0": { "Jade": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "master"
}
}
}