-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (66 loc) · 2.38 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
{
"name" : "jbzoo/csv-blueprint",
"type" : "project",
"description" : "CLI Utility for Validating and Generating CSV files based on custom rules. It ensures your data meets specified criteria, streamlining data management and integrity checks.",
"license" : "MIT",
"keywords" : [
"jbzoo",
"csv",
"csv-validator",
"csv-linter",
"csv-validation",
"csv-generation",
"csv-format",
"csv-rules",
"csv-schema"
],
"authors" : [
{
"name" : "Denis Smetannikov",
"email" : "[email protected]",
"role" : "lead"
}
],
"minimum-stability" : "dev",
"prefer-stable" : true,
"require" : {
"php" : "^8.2",
"ext-mbstring" : "*",
"league/csv" : "^9.15.0",
"jbzoo/data" : "^7.1.1",
"jbzoo/cli" : "^7.2.2",
"jbzoo/utils" : "^7.2.1",
"jbzoo/ci-report-converter" : "^7.2.1",
"symfony/yaml" : "^7.0.3",
"symfony/filesystem" : "^7.0.6",
"symfony/finder" : "^7.0.0",
"markrogoyski/math-php" : "^2.10.0",
"respect/validation" : "^2.3.7",
"giggsey/libphonenumber-for-php-lite" : "^8.13.35",
"fidry/cpu-core-counter" : "^1.1.0"
},
"require-dev" : {
"roave/security-advisories" : "dev-latest",
"jbzoo/toolbox-dev" : "^7.1.0",
"jbzoo/codestyle" : "^7.1.2",
"fakerphp/faker" : "^1.23.1",
"phpstan/phpstan" : "1.11.1"
},
"bin" : ["csv-blueprint"],
"autoload" : {
"psr-4" : {"JBZoo\\CsvBlueprint\\" : "src"}
},
"autoload-dev" : {
"psr-4" : {"JBZoo\\PHPUnit\\" : "tests"}
},
"config" : {
"optimize-autoloader" : true,
"allow-plugins" : {"composer/package-versions-deprecated" : true},
"platform-check" : true
},
"extra" : {
"branch-alias" : {
"dev-master" : "7.x-dev"
}
}
}