forked from cors-gmbh/friendly-captcha-bundle
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.51 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.51 KB
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
53
54
55
{
"name": "elma/friendly-captcha-bundle",
"type": "symfony-bundle",
"description": "ELMA - Friendly Captcha Bundle, fork of the 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"
}, {
"name": "Bilendi Technology",
"email": "team.dev@bilendi.com",
"homepage": "https://bilendi.tech"
}
],
"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": "^9.5"
},
"autoload": {
"psr-4": {
"CORS\\Bundle\\FriendlyCaptchaBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CORS\\Tests\\Bundle\\FriendlyCaptchaBundle\\": "tests"
}
},
"replace": {
"cors/friendly-captcha-bundle": "*"
},
"extra": {
"branch-alias": {
"dev-main": "2.0-dev"
},
"symfony": {
"allow-contrib": "true"
}
}
}