-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathcomposer.json
More file actions
82 lines (82 loc) · 2.43 KB
/
composer.json
File metadata and controls
82 lines (82 loc) · 2.43 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "anyx/login-gate-bundle",
"description": "Checking brute force attacks on site",
"keywords": [
"security",
"brute-force"
],
"homepage": "https://github.com/anyx/LoginGateBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Aleksandr Klimenkov",
"email": "alx.devel@gmail.com"
}
],
"require": {
"ext-json": "*",
"symfony/config": "^3.3|^4.0|^5.1|^6.0|^7.0",
"symfony/dependency-injection": "^3.3|^4.0|^5.1|^6.0|^7.0",
"symfony/security-bundle": "^3.3|^4.0|^5.1|^6.0|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"php": ">=8.2",
"ext-ctype": "*",
"ext-iconv": "*",
"symfony/security-bundle": "^7.0",
"symfony/dotenv": "^7.0",
"symfony/flex": "^2",
"symfony/framework-bundle":"^7.0",
"symfony/yaml":"^7.0",
"doctrine/doctrine-bundle": "^2.11",
"doctrine/doctrine-migrations-bundle": "^3.3",
"doctrine/doctrine-fixtures-bundle": "^3.4",
"symfony/browser-kit":"^7.0",
"symfony/monolog-bundle": "^3.0",
"escapestudios/symfony2-coding-standard": "3.x-dev",
"friendsofphp/php-cs-fixer": "^3.5",
"phpmd/phpmd": "@stable",
"doctrine/orm": "^2.17|^3.0",
"symfony/twig-bundle":"^7.0",
"twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^2.12|^3.0",
"symfony/phpunit-bridge": "^6.1",
"zenstruck/browser": "^1.6",
"symfony/runtime": "^7.0",
"mtdowling/jmespath.php": "^2.7",
"doctrine/mongodb-odm-bundle": "5.0.x-dev"
},
"autoload": {
"psr-4": {
"Anyx\\LoginGateBundle\\": "",
"OrmApp\\": "Tests\\OrmApp\\src",
"MongoApp\\": "Tests\\MongoApp\\src"
}
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"ocramius/package-versions": true,
"symfony/flex": true,
"symfony/runtime": true
}
},
"scripts": {
"set-coding-standard": "bin/phpcs --config-set installed_paths vendor/escapestudios/symfony2-coding-standard",
"phpcs": "bin/phpcs --exclude=Generic.Files.LineLength Document/ Entity/ Event/ Exception/ Model/ Security/ Service/ Storage/",
"phpcbf": "bin/phpcbf Document/ Entity/ Event/ Exception/ Model/ Security/ Service/ Storage/",
"cs:fix": "php-cs-fixer fix",
"post-install-cmd": [
"@set-coding-standard"
],
"post-update-cmd": [
"@set-coding-standard"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}