-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
46 lines (45 loc) · 1.17 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
40
41
42
43
44
45
46
{
"name": "lakion/twigleaf",
"type": "library",
"description": "Modify Twig templates without manipulating the files. Overriding of third party templates.",
"keywords": ["twig", "override", "themes"],
"homepage": "http://lakion.com",
"license": "MIT",
"authors": [
{
"name": "Paweł Jędrzejewski",
"homepage": "http://pjedrzejewski.com"
},
{
"name": "Lakion",
"homepage": "http://lakion.com"
},
{
"name": "Community contributions",
"homepage": "http://github.com/Lakion/Twigleaf/contributors"
}
],
"require": {
"php": ">=5.3.3",
"twig/twig": "1.15.*",
"wa72/htmlpagedom": "dev-master@dev"
},
"require-dev": {
"phpspec/phpspec": "~2.0",
"behat/behat": "~2.5"
},
"autoload": {
"psr-0": { "Lakion\\Twigleaf\\": "src/" }
},
"autoload-dev": {
"psr-0": { "spec\\Lakion\\Twigleaf\\": "spec/" }
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}