-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 2.33 KB
/
Copy pathcomposer.json
File metadata and controls
77 lines (77 loc) · 2.33 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "virtuallast/confluence-v2-php-client",
"description": "A typed PHP client for the Confluence Cloud REST API v2.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mike",
"homepage": "https://github.com/VirtualLast"
}
],
"homepage": "https://github.com/VirtualLast/confluence-v2-php-client",
"support": {
"issues": "https://github.com/VirtualLast/confluence-v2-php-client/issues",
"source": "https://github.com/VirtualLast/confluence-v2-php-client"
},
"require": {
"php": "^8.3",
"ext-json": "*",
"jane-php/open-api-runtime": "^7.0",
"php-http/client-common": "^2.7",
"php-http/discovery": "^1.20",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.1",
"psr/http-message": "^2.0",
"symfony/serializer": "^7.4 || ^8.0"
},
"require-dev": {
"jane-php/open-api-3": "^7.0",
"nyholm/psr7": "^1.8",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5 || ^12.0",
"symfony/console": "^7.4 || ^8.0",
"symfony/http-client": "^7.4 || ^8.0",
"symfony/process": "^7.4 || ^8.0"
},
"suggest": {
"symfony/http-client": "Recommended PSR-18 HTTP transport.",
"nyholm/psr7": "Recommended PSR-7 and PSR-17 implementation."
},
"autoload": {
"psr-4": {
"VirtualLast\\ConfluenceV2\\": "src/",
"VirtualLast\\ConfluenceV2\\Generated\\": "generated/"
}
},
"autoload-dev": {
"psr-4": {
"VirtualLast\\ConfluenceV2\\Tests\\": "tests/",
"VirtualLast\\ConfluenceV2\\Tool\\": "tools/"
}
},
"scripts": {
"generate": [
"@php bin/console confluence:generate"
],
"update-spec": "@php bin/console confluence:update-spec",
"test": "@php vendor/bin/phpunit",
"analyse": "@php vendor/bin/phpstan analyse",
"validate": [
"@composer validate --strict",
"@test",
"@analyse"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": false
},
"platform": {
"php": "8.3.0"
},
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}