-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 973 Bytes
/
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
{
"name": "electro-modules/matisse",
"description": "A component-based template engine for PHP web applications",
"type": "electro-plugin",
"keywords": [
"plugin",
"electro"
],
"license": "MIT",
"homepage": "https://github.com/electro-modules/matisse",
"authors": [
{
"name": "Impactwave",
"email": "[email protected]",
"homepage": "http://impactwave.com"
},
{
"name": "Claudio Silva",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"electro/installers": "^1.0.0",
"electro/interop": "^1.0.0",
"php-kit/flow": "^1.0.0",
"php-kit/html5-tools": "^1.0.0",
"php-kit/power-primitives": "^1.0.0",
"php-kit/tools": "^2.0.0"
},
"autoload": {
"psr-4": {
"Matisse\\": "src/"
},
"files": [
"globals.php",
"htmlBuilder.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}