-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.24 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
52
53
54
55
56
{
"name": "cityware/city-mvc",
"description": "Cityware MVC",
"license": "GPL-3.0",
"keywords": [
"cityware",
"mvc"
],
"authors": [
{
"name": "Fabricio S V Xavier",
"email": "fabricio@cityware.com.br",
"homepage": "http://www.cityware.com.br",
"role": "Developer"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/cityware/city-mvc.git"
}
],
"homepage": "https://github.com/cityware/city-mvc",
"autoload": {
"psr-4": {
"Cityware\\Mvc\\": "src/"
},
"psr-0": {
"Cityware\\Mvc\\": "src/"
},
"classmap": [
"src/"
]
},
"require": {
"php": ">=5.6"
},
"require-dev": {
},
"suggest": {
"ext-intl": "Required for most features of Zend\\I18n; included in default builds of PHP"
},
"minimum-stability":"dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.0-dev",
"dev-develop": "1.1-dev"
}
},
"autoload-dev": {
"psr-4": {
"CitywareTest\\Mvc\\": "test/"
}
}
}