-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
72 lines (72 loc) · 2.31 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "sigwin/xezilaires-dev",
"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.2",
"ext-json": "*",
"symfony/options-resolver": "^6.4 || ^7.0",
"symfony/serializer": "^6.4 || ^7.0"
},
"require-dev": {
"matthiasnoback/symfony-dependency-injection-test": "^5.0",
"nyholm/nsa": "^1.1",
"nyholm/symfony-bundle-test": "^3.0",
"openspout/openspout": "^4.0",
"phpoffice/phpspreadsheet": "^2.0",
"phpunit/phpunit": "^11.2",
"sigwin/infra": "~1.11.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/phpunit-bridge": "^6.4 || ^7.0",
"symfony/property-access": "^6.4 || ^7.0",
"symfony/property-info": "^6.4 || ^7.0",
"symfony/validator": "^6.4 || ^7.0"
},
"replace": {
"sigwin/xezilaires-core": "self.version",
"sigwin/xezilaires-phpspreadsheet": "self.version",
"sigwin/xezilaires-spout": "self.version",
"sigwin/xezilaires-symfony": "self.version"
},
"suggest": {
"openspout/openspout": "Read Excel files with Spout",
"phpoffice/phpspreadsheet": "Read Excel files with PhpSpreadsheet",
"symfony/console": "bin/xezilaires use",
"symfony/framework-bundle": "Symfony bundle integration, bin/xezilaires use",
"symfony/validator": "Symfony bundle integration, bin/xezilaires validate use"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Xezilaires\\": "src/Xezilaires",
"Xezilaires\\Bridge\\": "src/Bridge"
},
"exclude-from-classmap": [
"**/src/Xezilaires/Test/",
"**/src/Bridge/*/Test/"
]
},
"bin": [
"src/Bridge/Symfony/bin/xezilaires"
],
"config": {
"platform": {
"ext-gd": "1.3.1"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "1.0-dev"
}
}
}