-
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) · 823 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 823 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": "nextgen-tech/nmvs-client",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Krzysztof Grabania",
"email": "info@nextgen-tech.pl"
},
{
"name": "Mateusz Kiedrowski",
"email": "info@nextgen-tech.pl"
}
],
"require": {
"php": "^7.3",
"guzzlehttp/guzzle": "^6.3|^7.2",
"ramsey/uuid": "^3.7|^4.1",
"spatie/array-to-xml": "^2.15"
},
"require-dev": {
"phpstan/phpstan": "^0.12.54",
"phpunit/phpunit": "^9.4",
"spatie/phpunit-snapshot-assertions": "^4.2"
},
"autoload": {
"psr-4": {
"NGT\\NMVS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}