-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 2.12 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 2.12 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
66
67
{
"name": "fusonic/csv-reader",
"license": "MIT",
"version": "0.5.2",
"description": "Map data from CSV files to typed PHP models.",
"type": "library",
"authors": [
{
"name": "Fusonic GmbH",
"email": "php@fusonic.net"
}
],
"autoload": {
"psr-4": {
"Fusonic\\CsvReader\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fusonic\\CsvReader\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.2",
"symfony/deprecation-contracts": "^3.6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.91",
"infection/infection": "^0.31",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^12.4",
"rector/rector": "^2.2",
"tomasvotruba/type-coverage": "^2.0"
},
"suggest": {
"ext-intl": "Required to use IntlValueConverter for advanced value conversion."
},
"scripts": {
"infection": "XDEBUG_MODE=coverage vendor/bin/infection",
"phpcs:check": "XDEBUG_MODE=off vendor/bin/php-cs-fixer check -v --diff",
"phpcs:fix": "XDEBUG_MODE=off vendor/bin/php-cs-fixer fix -v",
"phpstan": "XDEBUG_MODE=off vendor/bin/phpstan analyse --memory-limit=512M",
"rector:check": "XDEBUG_MODE=off vendor/bin/rector --dry-run",
"rector:fix": "XDEBUG_MODE=off vendor/bin/rector",
"test": "XDEBUG_MODE=off vendor/bin/phpunit --testdox",
"test:coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-cobertura=coverage/phpunit/cobertura.xml --coverage-html=coverage/phpunit/html --coverage-text",
"code:check": [
"@phpcs:check",
"@phpstan",
"@rector:check"
],
"code:fix": [
"@phpcs:fix",
"@phpstan",
"@rector:fix"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
}
}