-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.68 KB
/
Copy pathcomposer.json
File metadata and controls
65 lines (65 loc) · 1.68 KB
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
{
"name": "hugoseigle/symfony-import-export-bundle",
"description": "Symfony bundle for importing and exporting entities",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"symfony",
"import",
"export",
"spreadsheet",
"doctrine"
],
"authors": [
{
"name": "Hugo SEIGLE",
"email": "hugo.seigle03@gmail.com"
}
],
"require": {
"php": ">=8.1",
"doctrine/orm": "^3.2",
"phpoffice/phpspreadsheet": "^2.3.5",
"symfony/form": "^6.4 || ^7.1 || ^8.0",
"symfony/framework-bundle": "^6.4 || ^7.1 || ^8.0",
"symfony/translation-contracts": "^2.5 || ^3.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.52",
"friendsofphp/php-cs-fixer": "^3.64",
"phpro/grumphp": "^2.17",
"phpstan/phpstan": "^2.2",
"phpunit/phpunit": "^10.5"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"HugoSEIGLE\\SymfonyImportExportBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HugoSEIGLE\\SymfonyImportExportBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp": true
}
},
"extra": {
"branch-alias": {
"dev-main": "2.x-dev"
},
"symfony": {
"allow-contrib": false,
"require": "6.4.* || 7.* || 8.*"
}
},
"scripts": {
"lint": "php-cs-fixer fix",
"test": "phpunit --configuration phpunit.xml.dist"
}
}