-
-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathcomposer.json
85 lines (85 loc) · 2.65 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "sonata-project/exporter",
"description": "Lightweight Exporter library",
"license": "MIT",
"type": "library",
"keywords": [
"bundle",
"client",
"csv",
"data",
"export",
"symfony-bundle",
"xls",
"xlsx"
],
"authors": [
{
"name": "Thomas Rabaix",
"email": "[email protected]",
"homepage": "https://sonata-project.org/"
}
],
"homepage": "https://docs.sonata-project.org/projects/exporter",
"require": {
"php": "^8.1"
},
"require-dev": {
"doctrine/dbal": "^3.1",
"doctrine/mongodb-odm": "^2.3",
"doctrine/orm": "^2.14",
"friendsofphp/php-cs-fixer": "^3.4",
"matthiasnoback/symfony-config-test": "^4.2 || ^5.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.0 || ^5.0",
"phpoffice/phpspreadsheet": "^1.23",
"phpstan/extension-installer": "^1.0",
"phpstan/phpdoc-parser": "^1.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.18",
"psalm/plugin-symfony": "^5.0",
"rector/rector": "^1.1",
"symfony/config": "^6.4 || ^7.1",
"symfony/dependency-injection": "^6.4 || ^7.1",
"symfony/http-foundation": "^6.4 || ^7.1",
"symfony/http-kernel": "^6.4 || ^7.1",
"symfony/phpunit-bridge": "^6.4 || ^7.1",
"symfony/property-access": "^6.4 || ^7.1",
"symfony/routing": "^6.4 || ^7.1",
"vimeo/psalm": "^5.0"
},
"conflict": {
"doctrine/mongodb-odm": "<2.3",
"doctrine/orm": "<2.14",
"phpoffice/phpspreadsheet": "<1.23",
"symfony/config": "<5.4"
},
"suggest": {
"phpoffice/phpspreadsheet": "To be able to export the data in XLSX",
"symfony/property-access": "To be able to export from database entities",
"symfony/routing": "To be able to export the routes of a Symfony app"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Sonata\\Exporter\\": "src/",
"Sonata\\Exporter\\Bridge\\Symfony\\": "src/Bridge/Symfony/"
}
},
"autoload-dev": {
"psr-4": {
"Sonata\\Exporter\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true
},
"sort-packages": true
}
}