generated from AlexSkrypnyk/scaffold
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
58 lines (58 loc) · 1.5 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
{
"name": "alexskrypnyk/csvtable",
"description": "PHP class to parse and format CSV content.",
"license": "GPL-2.0-or-later",
"type": "library",
"authors": [
{
"name": "Alex Skrypnyk",
"email": "alex@drevops.com",
"role": "Maintainer"
}
],
"homepage": "/~https://github.com/AlexSkrypnyk/CsvTable",
"support": {
"issues": "/~https://github.com/AlexSkrypnyk/CsvTable/issues",
"source": "/~https://github.com/AlexSkrypnyk/CsvTable"
},
"require": {
"php": ">=8.2"
},
"require-dev": {
"drupal/coder": "^8.3",
"ergebnis/composer-normalize": "^2.44",
"phpstan/phpstan": "^2",
"phpunit/phpunit": "^11",
"rector/rector": "^2"
},
"autoload": {
"psr-4": {
"AlexSkrypnyk\\CsvTable\\": ""
}
},
"autoload-dev": {
"psr-4": {
"AlexSkrypnyk\\CsvTable\\Tests\\": "tests/phpunit"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
}
},
"scripts": {
"lint": [
"phpcs",
"phpstan",
"rector --clear-cache --dry-run"
],
"lint-fix": [
"rector --clear-cache",
"phpcbf"
],
"reset": "rm -Rf vendor composer.lock",
"test": "phpunit --no-coverage",
"test-coverage": "phpunit"
}
}