-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.55 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",
"description": "Iterate structured Excel spreadsheets, normalize rows into value objects, validate, serialize into CSV, JSON, XML.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Dalibor Karlović",
"email": "dalibor.karlovic@sigwin.hr"
}
],
"require": {
"php": "^8.0",
"symfony/options-resolver": "^4.4 || ^5.0 || ^6.0",
"symfony/serializer": "^4.4 || ^5.0 || ^6.0"
},
"require-dev": {
"doctrine/annotations": "^1.12",
"nyholm/nsa": "^1.1",
"openspout/openspout": "^3.0",
"phpunit/phpunit": "^9.5",
"symfony/console": "^4.4 || ^5.0 || ^6.0",
"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",
"symfony/validator": "^4.4 || ^5.0 || ^6.0"
},
"suggest": {
"sigwin/xezilaires-phpspreadsheet": "Read Excel files with PhpSpreadsheet",
"sigwin/xezilaires-spout": "Read Excel files with Spout",
"sigwin/xezilaires-symfony": "Symfony bundle integration, bin/xezilaires use"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Xezilaires\\": "."
},
"exclude-from-classmap": [
"/Test/"
]
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}