-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
45 lines (45 loc) · 1.36 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
{
"name": "iq2i/data-importer",
"type": "library",
"description": "A PHP library to easily manage and import large data file",
"keywords": ["php", "file", "data", "import", "csv", "xml", "json", "dto", "async"],
"homepage": "https://github.com/IQ2i/data-importer",
"license": "MIT",
"authors": [
{
"name": "Loïc Sapone",
"email": "[email protected]",
"homepage": "https://loic-sapone.fr"
}
],
"require": {
"php": ">=8.1",
"ext-simplexml": "*",
"halaxa/json-machine": "^1.1",
"nette/php-generator": "^4.0",
"symfony/console": "^6.1|^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/filesystem": "^6.1|^7.0",
"symfony/http-kernel": "^6.1|^7.0",
"symfony/messenger": "^6.1|^7.0",
"symfony/serializer": "^6.1|^7.0",
"symfony/string": "^6.1|^7.0",
"symfony/property-access": "^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"mikey179/vfsstream": "^1.6",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^10.0",
"rector/rector": "^0.15"
},
"autoload": {
"psr-4": { "IQ2i\\DataImporter\\": "src" }
},
"autoload-dev": {
"psr-4": { "IQ2i\\DataImporter\\Tests\\": "tests" }
},
"bin": [
"dataimporter"
]
}