forked from cors-gmbh/friendly-captcha-bundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.27 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
{
"name": "cors/friendly-captcha-bundle",
"type": "symfony-bundle",
"description": "CORS - Friendly Captcha Bundle",
"keywords": [
"friendly-captcha"
],
"homepage": "https://www.cors.gmbh",
"license": "MIT",
"authors": [
{
"name": "CORS GmbH",
"email": "office@cors.gmbh",
"homepage": "https://www.cors.gmbh/",
"role": "TEAM"
}
],
"require": {
"php": ">=7.3",
"symfony/form": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/http-client": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/framework-bundle": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/validator": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/yaml": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"twig/twig": "^2.9 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^7 || ^8 || ^9.5"
},
"autoload": {
"psr-4": {
"CORS\\Bundle\\FriendlyCaptchaBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CORS\\Tests\\Bundle\\FriendlyCaptchaBundle\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"symfony": {
"allow-contrib": "true"
}
}
}