-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
44 lines (44 loc) · 1.16 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
{
"name": "nuxeo/nuxeo-php-client",
"description": "PHP Client Library for the Nuxeo Automation API",
"keywords": ["nuxeo", "automation", "client"],
"homepage": "http://www.nuxeo.com",
"license": "Apache-2.0",
"authors": [
{
"name": "Pierre-Gildas MILLON",
"email": "[email protected]"
}
],
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"require": {
"php": "~7.2 || ~8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "~6.0 <= 6.5.5 || ~7.0 <= 7.4.2",
"monolog/monolog": "~1.3 <= 1.27.0 || ~2.0, <= 2.5.0",
"zbateson/mail-mime-parser": "~1.3 <= 1.3.3 || ~2.2 <= 2.2.1",
"jms/serializer": "~2.0 <=2.3.0 || ~3.0 <= 3.17.1"
},
"require-dev": {
"phpunit/phpunit": "~8.5.26 || ~9.5.20",
"dms/phpunit-arraysubset-asserts": "~v0.4.0",
"symfony/http-foundation": "~4.4.41",
"symfony/mime": "~4.4.41",
"enlightn/security-checker": "~1.10.0"
},
"autoload": {
"psr-4": {
"Nuxeo\\": "src/Nuxeo"
}
},
"autoload-dev" : {
"psr-4": {
"Nuxeo\\Client\\Tests\\": "tests/Nuxeo/Client/Tests",
"Nuxeo\\Client\\FTests\\": "ftests/Nuxeo/Client/FTests"
}
}
}