-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 814 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 814 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
{
"name": "ang3/php-odoo-orm",
"description": "PHP object relational mapper (ORM) for Odoo databases.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Joanis Rouanet",
"email": "joanis.ang3@gmail.com"
}
],
"require": {
"php": "^7.2.5",
"ang3/php-odoo-api-client": "^6.0",
"symfony/cache": "^4.2 || ^5.0",
"ocramius/proxy-manager": "^2.2",
"doctrine/annotations": "^1.0",
"symfony/property-access": "^4.2 || ^5.0",
"symfony/serializer": "^4.2 || ^5.0",
"symfony/string": "^5.0"
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"Ang3\\Component\\Odoo\\ORM\\": "src/"
}
}
}