-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
38 lines (37 loc) · 928 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
{
"name": "rezzza/accounting",
"description": "Accounting utilities",
"keywords": ["accounting", "utilities"],
"type": "standalone",
"homepage": "https://github.com/rezzza/accounting",
"license": "MIT",
"authors": [{
"name": "Community contributors",
"homepage": "https://github.com/rezzza/accounting/contributors"
}],
"require": {
"php": ">=5.3.2",
"symfony/intl": "~2.3|~3.0",
"symfony/validator": "~2.3|~3.0"
},
"suggest": {
"twig/twig": "For IbanExtension",
"php-soap": "Mandatory for usage of ViesValidator"
},
"require-dev": {
"atoum/atoum": "~1.0|~2.0"
},
"autoload": {
"psr-0": {
"Rezzza\\Accounting": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"bin-dir": "bin"
}
}