-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.02 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.02 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
{
"name": "costinmrr/parser",
"type": "library",
"description": "A simple parser to convert json/xml/csv to an array with known columns",
"license": "MIT",
"authors": [
{
"name": "Costin Moraru",
"email": "admin@costinmrr.dev"
}
],
"require": {
"php": ">=8.1",
"galbar/jsonpath": "^2.0",
"illuminate/support": "^10.0",
"ext-simplexml": "*",
"ext-ctype": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"slevomat/coding-standard": "^8.0",
"squizlabs/php_codesniffer": "^3.2",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"Costinmrr\\Parser\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Costinmrr\\Parser\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"kylekatarnls/update-helper": false
}
}
}