-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.09 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
{
"name": "widerplan/hcaptcha",
"description": "hCaptcha API client",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"WiderPlan\\Hcaptcha\\": "src/"
}
},
"require": {
"php": ">= 8.1",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "*",
"psr/http-factory-implementation": "*",
"webmozart/assert": "^1.11"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"nyholm/psr7": "^1.8",
"php-http/discovery": "^1.17",
"symfony/http-client": "^6.4 || ^7.1",
"symfony/var-dumper": "^6.4 || ^7.1"
},
"suggest": {
"php-http/discovery": "For automatic discovery and configuration of HTTP client."
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"php-http/discovery": false
},
"lock": false,
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"forward-command": false
}
}
}