-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 2.21 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
{
"name": "fastbolt/entity-importer",
"type": "library",
"description": "A library for importing CSV files to doctrine entities",
"keywords": [
"fastbolt",
"csv",
"import",
"entity-import",
"doctrine"
],
"homepage": "https://github.com/fastbolt/entity-importer",
"license": "MIT",
"authors": [
{
"name": "Daniel Hirtzbruch",
"email": "[email protected]",
"homepage": "https://github.com/dhirtzbruch",
"role": "Developer"
}
],
"require": {
"php": ">=8.2",
"ext-zlib": "*",
"doctrine/persistence": "^2.4|^3.0",
"guzzlehttp/guzzle": "^7.5",
"portphp/csv": "^2.0",
"symfony/config": "^6.0",
"symfony/filesystem": "^6.0",
"symfony/framework-bundle": "^6.0",
"symfony/string": "^6.0",
"webmozart/assert" : "^1.11",
"phpoffice/phpspreadsheet": "^2.1"
},
"require-dev": {
"fastbolt/test-helpers": "^0.1.1",
"fig-r/psr2r-sniffer": "^1.3",
"phpmd/phpmd": "^2.11",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.18.4",
"psalm/plugin-symfony": "^v5.0",
"slevomat/coding-standard": "^7.0",
"spryker/code-sniffer": "^0.17.4",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^5.6",
"weirdan/doctrine-psalm-plugin": "^v2.8"
},
"autoload": {
"psr-4": {
"Fastbolt\\EntityImporter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fastbolt\\EntityImporter\\Tests\\Unit\\": "tests/unit/"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit",
"check-style": "vendor/bin/phpcs",
"psalm": "vendor/bin/psalm",
"fix-style": "vendor/bin/phpcbf",
"test": [
"@phpunit",
"@psalm",
"@check-style"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"prefer-stable": true
}