forked from wandersonwhcr/balance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.63 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": "wandersonwhcr/balance",
"description": "Balance Balancete Contábil",
"type": "project",
"keywords": ["accounting", "contabilidade", "balancete"],
"homepage": "https://github.com/wandersonwhcr/balance",
"license": "MIT",
"authors": [
{
"name": "Wanderson Camargo",
"email": "wandersonwhcr@gmail.com",
"homepage": "http://www.wanderson.camargo.nom.br",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/wandersonwhcr/balance/issues"
},
"autoload": {
"psr-4": {
"Balance\\": "module/Balance/src/Balance/",
"BalanceTags\\": "module/BalanceTags/src/BalanceTags/"
}
},
"autoload-dev": {
"psr-4": {
"BalanceTest\\": "module/Balance/test/BalanceTest/",
"BalanceTagsTest\\": "module/Balance/test/BalanceTagsTest/"
}
},
"require": {
"php": ">=5.6",
"ext-bcmath": "*",
"ext-intl": "*",
"ext-pgsql": "*",
"zendframework/zendframework": "2.5.*",
"robmorgan/phinx": "0.5.*"
},
"require-dev": {
"ext-xdebug": "*",
"phpunit/phpunit": "5.1.*",
"phploc/phploc": "2.1.*",
"sebastian/phpcpd": "2.0.*",
"jakub-onderka/php-parallel-lint": "0.9.*",
"squizlabs/php_codesniffer": "2.5.*",
"fabpot/php-cs-fixer": "1.*",
"phpmd/phpmd": "2.3.*",
"neilime/zf2-twb-bundle": "2.6.*"
},
"non-feature-branches": ["develop"],
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}