-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 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
{
"name": "sigwin/xezilaires-phpspreadsheet",
"description": "Use Xezilaires together with PhpSpreadsheet to iterate structured Excel spreadsheets, normalize rows into value objects, validate, serialize into CSV, JSON, XML",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Dalibor Karlović",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"phpoffice/phpspreadsheet": "^1.18",
"sigwin/xezilaires": "^0.5 || ^0.6"
},
"require-dev": {
"doctrine/annotations": "^1.11",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^4.4.9 || ^5.0 || ^6.0",
"symfony/property-access": "^4.4 || ^5.0 || ^6.0",
"symfony/property-info": "^4.4 || ^5.0 || ^6.0"
},
"suggest": {
"sigwin/xezilaires-symfony": "Symfony bundle integration, bin/xezilaires use"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Xezilaires\\Bridge\\PhpSpreadsheet\\": "."
},
"exclude-from-classmap": [
"/Test/"
]
},
"config": {
"platform": {
"ext-gd": "1.3.1"
},
"preferred-install": {
"sigwin/xezilaires": "source"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}