-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
51 lines (51 loc) · 1.19 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
47
48
49
50
51
{
"name": "foil/foil",
"description": "PHP template engine for native PHP templates",
"keywords": [
"templates",
"template engine"
],
"homepage": "https://github.com/Giuseppe-Mazzapica/Foil",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Giuseppe Mazzapica",
"email": "[email protected]",
"homepage": "http://gm.zoomlab.it",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Foil\\": "src/"
},
"files": [ "inc/functions.php" ]
},
"autoload-dev": {
"psr-4": {
"Foil\\Tests\\": "tests/src/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=5.4",
"pimple/pimple": "~3.0",
"igorw/get-in": "~1.0",
"evenement/evenement": "~2.0",
"aura/html": "~2.4"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"mockery/mockery": "0.9.3",
"brain/monkey": "~1.1"
},
"config": {
"optimize-autoloader": true
},
"extra": {
"branch-alias": {
"dev-master": "0.6.x-dev"
}
}
}