-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
51 lines (51 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
{
"name": "onurb/excel-bundle",
"description": "Symfony Bundle to read or write Excel file (including pdf, xlsx, odt), using phpoffice/phpspreadsheet library (replacement of phpoffice/phpexcel, abandonned)",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Bruno Heron",
"email": "[email protected]"
},
{
"name": "Giulio De Donato",
"email": "[email protected]"
}
],
"keywords": ["xls", "xlsx", "excel", "phpexcel", "spreadsheet", "symfony", "bundle"],
"require": {
"php": ">=7.1.3",
"symfony/config": "~4.2",
"symfony/dependency-injection": "~3.2|~4.0",
"symfony/http-kernel": "~3.2|~4.0",
"symfony/http-foundation": "~3.2|~4.0",
"symfony/framework-bundle": "~3.2|~4.0",
"phpoffice/phpspreadsheet": "~1.0"
},
"require-dev": {
"php": ">=7.0",
"sensio/framework-extra-bundle": "~3.2|~4.0",
"squizlabs/php_codesniffer": "~2",
"phpunit/phpunit": "~6.5"
},
"autoload": {
"psr-4": {
"Onurb\\Bundle\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"OnurbTest\\Bundle\\ExcelBundle\\": "tests/ExcelBundleTests/",
"Onurb\\Bundle\\ExcelBundle\\": "tests/app/"
}
},
"suggest": {
"onurb/doctrine-yuml-bundle": "Use this bundle to generate mapping graph from your entities"
},
"extra": {
"symfony": {
"allow-contrib": "true"
}
}
}