-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
87 lines (87 loc) · 2.84 KB
/
composer.json
File metadata and controls
87 lines (87 loc) · 2.84 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
{
"name": "nowo-tech/otp-input-bundle",
"description": "Symfony OTP FormType with multi-input UI mapped to a single field value.",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"symfony",
"symfony-bundle",
"form",
"otp",
"one-time-password",
"2fa",
"form-type",
"vite",
"typescript"
],
"homepage": "https://github.com/nowo-tech/otp-input-bundle",
"support": {
"issues": "https://github.com/nowo-tech/otp-input-bundle/issues",
"source": "https://github.com/nowo-tech/otp-input-bundle"
},
"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.1 <8.6",
"symfony/config": "^6.0 || ^7.0 || ^8.0",
"symfony/dependency-injection": "^6.0 || ^7.0 || ^8.0",
"symfony/form": "^6.0 || ^7.0 || ^8.0",
"symfony/framework-bundle": "^6.0 || ^7.0 || ^8.0",
"symfony/http-kernel": "^6.0 || ^7.0 || ^8.0",
"symfony/twig-bundle": "^6.0 || ^7.0 || ^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/extension-installer": "^1.0",
"symfony/yaml": "^6.0 || ^7.0 || ^8.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^11.0",
"rector/rector": "^2.0",
"symfony/browser-kit": "^6.0 || ^7.0 || ^8.0",
"symfony/dom-crawler": "^6.0 || ^7.0 || ^8.0"
},
"autoload": {
"psr-4": {
"Nowo\\OtpInputBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nowo\\OtpInputBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"rector/rector": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"archive": {
"exclude": ["/demo", "/.cursor"]
},
"scripts": {
"test": "@php vendor/bin/phpunit --color=always",
"test-coverage": "@php vendor/bin/phpunit --color=always --coverage-html coverage --coverage-clover coverage.xml --coverage-text",
"cs-check": "@php vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs-fix": "@php vendor/bin/php-cs-fixer fix",
"rector": "@php vendor/bin/rector process",
"rector-dry": "@php vendor/bin/rector process --dry-run --no-progress-bar",
"phpstan": "@php vendor/bin/phpstan analyse --memory-limit=512M",
"qa": ["@cs-check", "@test"]
}
}