-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
85 lines (85 loc) · 2.55 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": "league/csv-doctrine",
"type": "library",
"description" : "Doctrine CSV adapter for League\\Csv",
"license": "MIT",
"authors": [
{
"name" : "Ignace Nyamagana Butera",
"email" : "[email protected]",
"homepage" : "https://nyamsprod.com"
}
],
"keywords": [
"csv",
"collections",
"iterator",
"array",
"criteria",
"doctrine"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/nyamsprod"
}
],
"require": {
"php": "^8.1.2",
"league/csv": "^9.7.3",
"doctrine/collections": "^2.2.0"
},
"require-dev": {
"ext-dom": "*",
"ext-xdebug": "*",
"doctrine/collections": "^2.2.2",
"friendsofphp/php-cs-fixer": "^3.64.0",
"phpstan/phpstan": "^1.12.3",
"phpstan/phpstan-deprecation-rules": "^1.2.1",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpstan/phpstan-strict-rules": "^1.6.0",
"phpunit/phpunit": "^10.5.16 || ^11.3.5",
"symfony/var-dumper": "^6.4.6 || ^7.1.4"
},
"replace": {
"bakame/csv-doctrine-collection-bridge": "*"
},
"autoload": {
"psr-4": {
"League\\Csv\\Doctrine\\" : "src"
}
},
"scripts": {
"phpcs": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix -vvv --diff --dry-run --allow-risky=yes --ansi",
"phpcs:fix": "php-cs-fixer fix -vvv --allow-risky=yes --ansi",
"phpstan": "phpstan analyse -c phpstan.neon --ansi --memory-limit=192M",
"phpunit": "XDEBUG_MODE=coverage phpunit --coverage-text",
"phpunit:min": "phpunit --no-coverage",
"test": [
"@phpunit",
"@phpstan",
"@phpcs"
]
},
"scripts-descriptions": {
"benchmark": "Runs benchmarks on writing and reader CSV documents",
"phpcs": "Runs coding style test suite",
"phpstan": "Runs complete codebase static analysis",
"phpunit": "Runs unit and functional testing",
"test": "Runs full test suite"
},
"suggest": {
"ext-iconv" : "Needed to ease transcoding CSV using iconv stream filters",
"ext-dom" : "Required to use the XMLConverter and the HTMLConverter classes",
"ext-mbstring": "Needed to ease transcoding CSV using mb stream filters"
},
"extra": {
"branch-alias": {
"dev-master": "9.x-dev"
}
},
"config": {
"sort-packages": true
},
"abandoned": "league/csv"
}