-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
52 lines (52 loc) · 1.23 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
{
"name": "crowdsec/capi-client",
"description": "The official PHP client for the CrowdSec Central API (CAPI)",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"keywords": [
"security",
"crowdsec",
"rest",
"client",
"curl",
"capi",
"watcher"
],
"authors": [
{
"name": "CrowdSec",
"email": "[email protected]"
},
{
"name": "Julien Loizelet",
"homepage": "https://github.com/julienloizelet/",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"CrowdSec\\CapiClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CrowdSec\\CapiClient\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.2.5 || ^8.0",
"crowdsec/common": "^3.0.0",
"ext-json": "*",
"symfony/config": "^4.4.44 || ^5.4.11 || ^6.0.11 || ^7.2.0",
"symfony/uid": "^5.4.19 || ^6.2.5 || ^7.2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5.30 || ^9.3",
"mikey179/vfsstream": "^1.6.11",
"ext-curl": "*"
},
"suggest": {
"ext-curl": "*"
}
}