-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
35 lines (30 loc) · 843 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
{
"name": "d3r3ck/bsp-accounting-bundle",
"type": "symfony-bundle",
"description": "Double-entry accounting bundle for Symfony2",
"keywords": ["accounting", "double-entry", "symfony2", "bundle", "bsp"],
"homepage": "https://github.com/D3r3ck/BSPAccountingBundle",
"license": "MIT",
"authors": [
{
"name": "Alfons Foubert",
"homepage": "http://alfonsfoubert.com",
"email" : "[email protected]"
}
],
"require": {
"php": ">=5.3.3",
"symfony/framework-bundle": "~2.0"
},
"autoload": {
"psr-0": {
"BSP\\AccountingBundle": ""
}
},
"target-dir": "BSP/AccountingBundle",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}