-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 793 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 793 Bytes
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
{
"name": "dprmc/clear-structure-sentry-data-service",
"description": "A library that allows you to import standard import files into the Sentry system.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Michael Drennen",
"email": "[email protected]"
}
],
"require": {
"nesbot/carbon": "^2.35|^3.0",
"dprmc/excel": "^2.0",
"ext-simplexml": "*",
"ext-soap": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.2|^10.0|^11.0",
"php-coveralls/php-coveralls": "^2.2"
},
"autoload": {
"classmap": [
"src/",
"tests/"
],
"psr-4": {
"DPRMC\\ClearStructure\\Sentry\\DataService\\Services\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DPRMC\\Tests\\": "tests/"
}
}
}