-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
132 lines (132 loc) · 4.95 KB
/
Copy pathcomposer.json
File metadata and controls
132 lines (132 loc) · 4.95 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "nowo-tech/auth-kit-bundle",
"description": "Symfony bundle for configurable login and registration with overridable templates, registration modes, and i18n",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"symfony",
"bundle",
"security",
"login",
"registration",
"authentication",
"auth"
],
"homepage": "https://github.com/nowo-tech/AuthKitBundle",
"support": {
"issues": "https://github.com/nowo-tech/AuthKitBundle/issues",
"source": "https://github.com/nowo-tech/AuthKitBundle"
},
"authors": [
{
"name": "H\u00e9ctor Franco Aceituno",
"email": "hectorfranco@nowo.tech",
"homepage": "https://github.com/HecFranco",
"role": "Developer"
},
{
"name": "Nowo.tech",
"homepage": "https://nowo.tech"
}
],
"require": {
"doctrine/doctrine-bundle": "^2.10 || ^3.0",
"doctrine/orm": "^2.15 || ^3.0",
"nowo-tech/doctrine-encrypt-bundle": "^2.3",
"nowo-tech/form-kit-bundle": "^2.2",
"php": ">=8.2 <8.6",
"psr/clock": "^1.0",
"symfony/asset": "^7.4 || ^8.0",
"symfony/config": "^7.4 || ^8.0",
"symfony/dependency-injection": "^7.4 || ^8.0",
"symfony/form": "^7.4 || ^8.0",
"symfony/framework-bundle": "^7.4 || ^8.0",
"symfony/http-client": "^7.4 || ^8.0",
"symfony/http-kernel": "^7.4 || ^8.0",
"symfony/password-hasher": "^7.4 || ^8.0",
"symfony/property-access": "^7.4 || ^8.0",
"symfony/routing": "^7.4 || ^8.0",
"symfony/security-bundle": "^7.4 || ^8.0",
"symfony/translation": "^7.4 || ^8.0",
"symfony/twig-bundle": "^7.4 || ^8.0",
"symfony/validator": "^7.4 || ^8.0",
"symfony/yaml": "^7.4 || ^8.0",
"twig/extra-bundle": "^3.12",
"twig/string-extra": "^3.12"
},
"suggest": {
"nowo-tech/password-strength-bundle": "Strength policies, live feedback, and validator for registration and password reset fields (^2.0)",
"nowo-tech/password-toggle-bundle": "Password fields with visibility toggle (^1.2.8)",
"symfony/ux-icons": "Required for password visibility toggle icons (^2.0 || ^3.0)",
"symfony/http-client": "Required with symfony/ux-icons to fetch toggle icons on demand",
"endroid/qr-code": "PNG/SVG data-URI QR codes for QR phone login (^6.0; PNG needs ext-gd)"
},
"require-dev": {
"endroid/qr-code": "^6.0",
"friendsofphp/php-cs-fixer": "^3.0",
"nowo-tech/password-strength-bundle": "^2.0",
"nowo-tech/password-toggle-bundle": "^2.0.0",
"nowo-tech/phpstan-frankenphp": "^1.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^10.0",
"rector/rector": "^2.0",
"symfony/clock": "^7.4 || ^8.0",
"vincentlanglet/twig-cs-fixer": "^4.0"
},
"autoload": {
"psr-4": {
"Nowo\\AuthKitBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nowo\\AuthKitBundle\\Tests\\": "tests/"
}
},
"archive": {
"exclude": [
"/demo",
"/.cursor"
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --colors=always --coverage-html coverage --coverage-clover coverage.xml --coverage-text",
"test-coverage-100": [
"@test-coverage",
"php scripts/check-coverage.php coverage.xml --min-percent=100"
],
"coverage-check": "@test-coverage-100",
"cs-check": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs-fix": "vendor/bin/php-cs-fixer fix",
"phpstan": "phpstan analyse --memory-limit=512M",
"rector": "rector process",
"rector-dry": "rector process --dry-run --no-progress-bar",
"qa": [
"@cs-check",
"@test"
],
"twig:lint": "twig-cs-fixer lint --config=.twig-cs-fixer.php",
"twig:fix": "twig-cs-fixer fix --config=.twig-cs-fixer.php",
"twig:fix:check": "twig-cs-fixer lint --config=.twig-cs-fixer.php --fix"
},
"scripts-descriptions": {
"test": "Run PHPUnit tests",
"test-coverage": "Run PHPUnit tests with code coverage",
"test-coverage-100": "Run test-coverage and fail if coverage is below 100%",
"coverage-check": "Alias for test-coverage-100",
"cs-check": "Check code style with PHP-CS-Fixer",
"cs-fix": "Fix code style with PHP-CS-Fixer",
"phpstan": "Run PHPStan static analysis",
"rector": "Apply Rector refactoring",
"rector-dry": "Run Rector in dry-run mode",
"qa": "Run all quality assurance checks"
}
}