-
Notifications
You must be signed in to change notification settings - Fork 141
/
composer.json
53 lines (51 loc) · 1.43 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
{
"name": "liuggio/excelbundle",
"description": "This is a Symfony2 Bundle helps you to read and write Excel files (including pdf, xlsx, odt), thanks to the PHPExcel library",
"type": "symfony-bundle",
"authors": [
{
"name": "Giulio De Donato",
"email": "liuggio@gmail.com"
},
{
"name": "ExcelBundle Contributors",
"homepage": "https://github.com/liuggio/ExcelBundle#contributors"
}
],
"keywords": ["xls","Excel", "symfony2", "bundle"],
"homepage": "http://www.welcometothebundle.com",
"license": "MIT",
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": "~2.6|~3.0",
"phpoffice/phpexcel": "~1.8.1"
},
"require-dev": {
"phpunit/phpunit": "~4.6",
"symfony/finder": "~2.6|~3.0",
"symfony/form": "~2.6|~3.0",
"symfony/class-loader": "~2.6|~3.0",
"symfony/validator": "~2.6|~3.0",
"symfony/browser-kit": "~2.6|~3.0",
"sensio/framework-extra-bundle": "~2.3|~3.0"
},
"autoload": {
"exclude-from-classmap": ["/Tests/"],
"psr-4": {
"Liuggio\\ExcelBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Liuggio\\ExcelBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"config": {
"bin-dir": "bin"
}
}