-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
47 lines (47 loc) · 1.18 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
{
"name": "adlogix/confluence-rest-php-client",
"description": "Confluence API PHP Client",
"version": "0.3.2",
"license": "MIT",
"keywords": [
"Atlassian",
"Connect",
"JWT",
"QSH",
"Guzzle",
"Confluence",
"Authentication",
"Middleware"
],
"authors": [
{
"name": "Cedric Michaux",
"email": "cedric@adlogix.eu",
"homepage": "http://www.adlogix.eu"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Adlogix\\ConfluenceClient\\": [
"src/",
"tests/"
]
}
},
"require": {
"php": ">=5.5.0",
"adlogix/guzzle-atlassian-connect-middleware": "^1.1.1",
"jms/serializer": "^1.3",
"symfony/yaml": "^3.1"
},
"require-dev": {
"silex/silex": "^2.0",
"guzzlehttp/guzzle": "^6.2",
"twig/twig": "^1.26",
"phpunit/phpunit": "^5.6"
},
"suggest": {
"guzzlehttp/guzzle": "For using this library as it was created for Guzzle6. But you should be able to use it with any PSR-7 HTTP Client"
}
}