forked from CloudPlayDev/confluence-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.43 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
{
"name": "cloudplaydev/confluence-php-client",
"description": "Provides methods for Confluence REST APIs",
"version": "0.4.0",
"license": "MIT",
"keywords": [
"Atlassian",
"Confluence",
"API",
"Authentication",
"PHP",
"Client"
],
"authors": [
{
"name": "Artem Stepin",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"CloudPlayDev\\ConfluenceClient\\": [
"src/"
]
}
},
"autoload-dev": {
"psr-4": {
"CloudPlayDev\\Tests\\ConfluenceClient\\": [
"tests/"
]
}
},
"require": {
"php": "^7.4 || ^8.1",
"ext-json": "*",
"psr/http-message": "^1.0",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory": "^1.0",
"php-http/httplug": "^2.0",
"php-http/discovery": "^1.11",
"php-http/promise": "^1.0",
"php-http/client-common": "^2.2",
"webmozart/assert": "^1.10",
"php-http/message": "^1.10"
},
"require-dev": {
"phpunit/phpunit": "^9.5.5,<=10.0",
"phpstan/phpstan": "^1.0.0",
"vimeo/psalm": "^5.1",
"guzzlehttp/guzzle": "^7.2",
"http-interop/http-factory-guzzle": "^1.0",
"phpstan/phpstan-webmozart-assert": "^1.0.0",
"phpstan/extension-installer": "^1.1"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"php-http/discovery": true
}
}
}