-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
40 lines (40 loc) · 985 Bytes
/
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": "alazzi-az/laraodoo-xmlrpc",
"description": "Odoo-Xmlrpc PHP for Laravel is a supercharged PHP API client that allows you to interact with the Odoo XML-RPC API",
"require": {
"php": "^8.1.0",
"laravel/framework": "^9.0|^10.0|^11.0",
"alazzi-az/odoo-xmlrpc": "^1.0"
},
"require-dev": {
"laravel/pint": "^1.10",
"pestphp/pest": "^2.9"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Alazzidev\\LaraodooXmlrpc\\": "src/"
}
},
"authors": [
{
"name": "mohammedazman",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Alazzidev\\LaraodooXmlrpc\\ServiceProvider"
]
}
},
"scripts": {
"test:unit": "pest --colors=always"
}
}