-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
38 lines (38 loc) · 848 Bytes
/
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
{
"name": "eo/honeypot-bundle",
"type": "symfony-bundle",
"description": "Honeypot trap for Symfony3 forms.",
"keywords": ["honeypot", "spam"],
"license": "MIT",
"authors": [
{
"name": "Eymen Gunay",
"email": "[email protected]"
}
],
"require": {
"symfony/framework-bundle": "~5.0 | ~6.0 | ~7.0"
},
"require-dev": {
"eo/symfony-test-edition": "~3.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/iisisrael/symfony-test"
}
],
"autoload": {
"psr-0": {
"Eo\\HoneypotBundle": ""
},
"psr-4": {
"Eo\\HoneypotBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}