forked from ChargeMap/ocpi-protocol
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
39 lines (39 loc) · 1.11 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
{
"name": "chargemap/ocpi-protocol",
"description": "Library to handle OCPI. Compatible with PSRs. Uses JsonSchema to validate payloads.",
"type": "library",
"license": "MIT",
"require": {
"php": "^7.4",
"ext-json": "*",
"ext-mbstring": "*",
"psr/log": "^1.1",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"php-http/discovery": "^1.7",
"myclabs/php-enum": "^1.7",
"justinrainbow/json-schema": "^5.2"
},
"require-dev": {
"phpunit/phpunit": "^9.2",
"php-http/guzzle6-adapter": "^2.0",
"http-interop/http-factory-guzzle": "^1.0",
"guzzlehttp/psr7": "^1.6"
},
"suggest": {
"php-http/guzzle6-adapter": "HTTP Client",
"http-interop/http-factory-guzzle": "Request, Response, Stream factories.",
"guzzlehttp/psr7": "Url factory"
},
"autoload": {
"psr-4": {
"Chargemap\\OCPI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Chargemap\\OCPI\\": "tests/"
}
}
}