-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
33 lines (33 loc) · 937 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
{
"name": "candango/myfuses",
"type": "library",
"keywords": ["controller", "fusebox", "framework", "myfuses", "mvc"],
"description": "MyFuses is a framework for build php web applications.",
"license": "Apache-2.0",
"homepage": "http://candango.org/projects/myfuses",
"authors": [
{
"name": "Flavio Garcia",
"email": "piraz@candango.org",
"homepage": "http://candango.org/contributors/piraz"
}
],
"require": {
"guzzlehttp/guzzle": ">=6.5.5",
"php": ">=5.6",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-xml": "*"
},
"require-dev": {
"phpunit/phpunit": ">=6.4.0",
"ext-mbstring": "*"
},
"suggest": {
"smarty/smarty": "Required for smarty template namespace."
},
"autoload": {
"psr-4": {"Candango\\MyFuses\\": "src/MyFuses/"}
}
}