-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
41 lines (41 loc) · 1.41 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
{
"name": "isometriks/spam-bundle",
"description": "Provides spam protection for Symfony forms",
"keywords": ["spam", "symfony", "form", "bundle"],
"require": {
"php": ">=7.4",
"symfony/config": "^5.4 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
"symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
"symfony/form": "^5.4 || ^6.0 || ^7.0",
"symfony/http-foundation": "^5.4 || ^6.0 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
"symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
"symfony/translation-contracts": "1.0 || ^2.0 || ^3.0",
"symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"phpunit/phpunit": "^9.1.1 || ^9.5",
"symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0",
"symfony/yaml": "^5.4 || ^6.0 || ^7.0"
},
"authors": [
{
"name": "Craig Blanchette",
"email": "[email protected]",
"homepage": "http://isometriks.com"
},
{
"name": "Patrik Pacin",
"email": "[email protected]",
"homepage": "https://exploit.cz"
}
],
"autoload": {
"psr-4": {
"Isometriks\\Bundle\\SpamBundle\\": "",
"Isometriks\\Bundle\\SpamBundle\\Tests\\": "tests/"
}
}
}