-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
105 lines (104 loc) · 3.51 KB
/
Copy pathcomposer.json
File metadata and controls
105 lines (104 loc) · 3.51 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
{
"name": "nowo-tech/password-toggle-bundle",
"description": "Symfony bundle providing a password form type with toggle visibility feature",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"symfony",
"bundle",
"form",
"password",
"toggle",
"visibility"
],
"homepage": "https://github.com/nowo-tech/PasswordToggleBundle",
"support": {
"issues": "https://github.com/nowo-tech/PasswordToggleBundle/issues",
"source": "https://github.com/nowo-tech/PasswordToggleBundle"
},
"authors": [
{
"name": "Héctor Franco Aceituno",
"email": "hectorfranco@nowo.tech",
"homepage": "https://github.com/HecFranco",
"role": "Developer"
},
{
"name": "Nowo.tech",
"homepage": "https://nowo.tech"
}
],
"require": {
"php": ">=8.2 <8.6",
"symfony/form": "^7.0 || ^8.0",
"symfony/framework-bundle": "^7.0 || ^8.0",
"symfony/twig-bundle": "^7.0 || ^8.0"
},
"suggest": {
"symfony/ux-icons": "Required for the default toggle widget icons (ux_icon). Install together with symfony/http-client unless you override the form theme.",
"symfony/http-client": "Required by symfony/ux-icons to fetch Iconify icons unless icons are locked locally (php bin/console ux:icons:lock)."
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"friendsofphp/php-cs-fixer": "^3.0",
"rector/rector": "^2.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"symfony/yaml": "^7.0 || ^8.0",
"symfony/http-kernel": "^7.0 || ^8.0",
"symfony/console": "^7.0 || ^8.0",
"symfony/dependency-injection": "^7.0 || ^8.0",
"symfony/ux-icons": "^2.0 || ^3.0",
"symfony/http-client": "^7.0 || ^8.0",
"psr/log": "^3.0"
},
"archive": {
"exclude": ["/demo", "/.cursor"]
},
"autoload": {
"psr-4": {
"Nowo\\PasswordToggleBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nowo\\PasswordToggleBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage --coverage-clover coverage.xml --coverage-text",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"rector": "rector process",
"rector-dry": "rector process --dry-run",
"phpstan": "phpstan analyse --memory-limit=512M",
"qa": [
"@cs-check",
"@test"
],
"update": "composer update",
"validate": "composer validate --strict"
},
"scripts-descriptions": {
"test": "Run PHPUnit tests",
"test-coverage": "Run PHPUnit tests with code coverage",
"cs-check": "Check code style with PHP-CS-Fixer",
"cs-fix": "Fix code style with PHP-CS-Fixer",
"rector": "Apply Rector refactoring",
"rector-dry": "Run Rector in dry-run mode",
"phpstan": "Run PHPStan static analysis",
"qa": "Run all quality assurance checks",
"update": "Update composer.lock",
"validate": "Validate composer.json"
}
}