-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.16 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
53
54
55
{
"name": "huluti/altcha-bundle",
"type": "symfony-bundle",
"description": "A simple package to help integrate Altcha on Symfony.",
"keywords": [
"symfony bundle",
"altcha",
"form security",
"captcha",
"form",
"bundle",
"symfony",
"symfony-ux"
],
"license": "MIT",
"authors": [
{
"name": "Hugo Posnic",
"homepage": "https://github.com/Huluti"
}
],
"require": {
"php": ">=8.1",
"symfony/form": "^6.4|^7.0",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/http-client": "^6.4|^7.0",
"symfony/yaml": "^6.4|^7.0",
"symfony/validator": "^6.4|^7.0",
"symfony/twig-bundle": "^6.4|^7.0",
"altcha-org/altcha": "^0.1"
},
"autoload": {
"psr-4": {
"Huluti\\AltchaBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Huluti\\AltchaBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-symfony": "^1.2",
"rector/rector": "^0.14.5",
"symfony/asset-mapper": "6.4 || ^7.0",
"symfony/stimulus-bundle": "^2.16",
"phpunit/phpunit": "^10.5"
},
"scripts" : {
"test": [
"phpunit"
]
}
}