-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
72 lines (72 loc) · 1.96 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "flux-se/odoo-api-client",
"description": "Odoo API client library (consume JSON or XML RPC API)",
"type": "library",
"license": "MIT",
"keywords": [
"odoo",
"api",
"xml",
"xml-rpc",
"json",
"json-rpc",
"dto",
"client",
"generator",
"serializer",
"http",
"httplug"
],
"authors": [
{
"name": "Francis HILAIRE",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"php-http/client-implementation": "^1.0",
"php-http/client-common": "^2.1",
"php-http/discovery": "^1.7",
"psr/http-factory-implementation": "^1.0",
"symfony/console": "^6.4|^7.1",
"symfony/serializer": "^6.4|^7.1",
"symfony/property-access": "^6.4|^7.1",
"symfony/property-info": "^6.4|^7.1",
"symfony/string": "^6.4|^7.1",
"symfony/http-kernel": "^6.4|^7.1",
"php-http/logger-plugin": "^1.1",
"phpdocumentor/reflection-docblock": "^5.4",
"prometee/php-class-generator": "^1.0",
"webmozart/assert": "^1"
},
"require-dev": {
"ext-xmlrpc": "*",
"ext-json": "*",
"phpunit/phpunit": "^10",
"php-http/guzzle7-adapter": "^1.0",
"http-interop/http-factory-guzzle": "^1.0",
"symplify/easy-coding-standard": "^12",
"phpstan/phpstan": "^1",
"rector/rector": "^1.0.4"
},
"suggest": {
"ext-xmlrpc": "Needed to support XML-RPC.",
"ext-json": "Needed to support JSON-RPC."
},
"bin": [
"bin/odoo-model-classes-generator"
],
"autoload": {
"psr-4": { "FluxSE\\OdooApiClient\\": "src/" },
"files": ["src/functions.php"]
},
"autoload-dev": {
"psr-4": { "Tests\\FluxSE\\OdooApiClient\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}