-
-
Notifications
You must be signed in to change notification settings - Fork 590
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 794 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 794 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
31
32
33
{
"name": "your-vendor/argocd-php-client",
"description": "A PHP client for the ArgoCD API",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Your Name",
"email": "your.email@example.com"
}
],
"require": {
"php": "^8.3",
"php-http/client-common": "^2.3",
"php-http/discovery": "^1.12",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.0 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"ArgoCD\\": "src/ArgoCD/"
}
},
"autoload-dev": {
"psr-4": {
"ArgoCD\\Tests\\": "tests/"
}
}
}