-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 2.04 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
{
"name": "sigwin/xezilaires-symfony",
"description": "Use Xezilaires together with Symfony 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": "dalibor.karlovic@sigwin.hr"
}
],
"require": {
"php": "^8.0",
"sigwin/xezilaires": "^0.5 || ^0.6",
"symfony/console": "^4.4 || ^5.0 || ^6.0",
"symfony/framework-bundle": "^4.4 || ^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"
},
"require-dev": {
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"nyholm/symfony-bundle-test": "dev-master",
"phpunit/phpunit": "^9.5",
"sigwin/xezilaires-phpspreadsheet": "^0.5 || ^0.6",
"sigwin/xezilaires-spout": "^0.5 || ^0.6",
"symfony/phpunit-bridge": "^4.4.9 || ^5.0 || ^6.0"
},
"conflict": {
"symfony/config": "< 4.4.12",
"symfony/dependency-injection": "< 4.4.12"
},
"suggest": {
"sigwin/xezilaires-phpspreadsheet": "Read Excel files with PhpSpreadsheet",
"sigwin/xezilaires-spout": "Read Excel files with Spout"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Xezilaires\\Bridge\\Symfony\\": "."
},
"exclude-from-classmap": [
"/Test/"
]
},
"bin": [
"bin/xezilaires"
],
"config": {
"platform": {
"ext-gd": "1.3.1"
},
"preferred-install": {
"sigwin/xezilaires": "source",
"sigwin/xezilaires-phpspreadsheet": "source",
"sigwin/xezilaires-spout": "source"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}