-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
40 lines (40 loc) · 1.06 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
{
"name": "dke-data/agrirouter-sdk-php",
"description": "This project contains the API for the communication with the agrirouter. Everything you need for the onboarding process, secure communication and much more.",
"license": [
"Apache-2.0"
],
"autoload": {
"psr-4": {
"App\\Api\\": "src/Api",
"App\\Definitions\\": "src/Definitions",
"App\\Dto\\": "src/Dto",
"App\\Environment\\": "src/Environment",
"App\\Service\\": "src/Service",
"Agrirouter\\": "generated/Agrirouter",
"GPBMetadata\\": "generated/GPBMetadata"
}
},
"autoload-dev": {
"psr-4": {
"Lib\\Tests\\": "tests/"
}
},
"require": {
"php": "8.*",
"ext-dom": "*",
"ext-bcmath": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"google/protobuf": "^3.11",
"psr/http-client": "^1.0.1",
"psr/http-message": "^1.0.1",
"psr/http-factory": "^1.0.1"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.0",
"php-mqtt/client": "^v1.0.0",
"monolog/monolog": "^2.2.0",
"phpunit/phpunit": "^9.5.0"
}
}