-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
51 lines (51 loc) · 1.56 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
{
"name": "meteo-concept/hcaptcha-bundle",
"description": "A Symfony bundle to use hCaptcha in forms",
"type": "symfony-bundle",
"require": {
"php": "^8.1",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0|^2.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"symfony/config": "~6.4|~7.0",
"symfony/twig-bridge": "~6.4|~7.0",
"symfony/form": "~6.4|~7.0",
"symfony/validator": "~6.4|~7.0"
},
"require-dev": {
"php-http/mock-client": "^1.5",
"nyholm/psr7": "^1.3",
"symfony/phpunit-bridge": "^6.4|^7.0",
"nyholm/symfony-bundle-test": "2.0.x-dev",
"matthiasnoback/symfony-dependency-injection-test": "^5.0",
"symfony/panther": "^2.0",
"symfony/browser-kit": "^6.4|^7.0",
"symfony/css-selector": "^6.4|^7.0",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/twig-bundle": "^6.4|^7.0",
"phpunit/phpunit": "^9.5"
},
"suggest": {
"symfony/http-client": "A Symfony component that implements PSR-18 HTTP client interface"
},
"license": "MIT",
"authors": [
{
"name": "Laurent Georget",
"email": "laurent.georget@meteo-concept.fr"
}
],
"autoload" : {
"psr-4" : {
"MeteoConcept\\HCaptchaBundle\\" : "./"
}
},
"minimum-stability" : "dev",
"prefer-stable" : true,
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}