-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
97 lines (97 loc) · 3.3 KB
/
Copy pathcomposer.json
File metadata and controls
97 lines (97 loc) · 3.3 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
{
"name": "vardumper/html5-twig-component-bundle",
"description": "Symfony UX Twig Components for typesafe HTML5 elements with ARIA support & enum validation",
"type": "symfony-bundle",
"license": "MIT",
"support": {
"docs": "https://vardumper.github.io/extended-htmldocument/",
"source": "https://github.com/vardumper/html5-twig-component-bundle",
"issues": "https://github.com/vardumper/extended-htmldocument/issues",
"security": "https://github.com/vardumper/extended-htmldocument/security/dependabot"
},
"keywords": [
"symfony",
"twig",
"components",
"html5",
"aria",
"symfony-ux"
],
"authors": [
{
"name": "vardumper",
"email": "info@erikpoehler.com"
}
],
"require": {
"php": "^8.4",
"symfony/twig-bundle": "^5.4|^6.0|^7.0|^8.0.4",
"symfony/ux-twig-component": "^2.33",
"symfony/options-resolver": "^5.4|^6.0|^7.0|^8.0",
"vardumper/extended-htmldocument": "^0.2.82"
},
"require-dev": {
"pestphp/pest": "^4.6.2",
"phpunit/phpunit": "^12.5.22",
"phpstan/phpstan": "^1.12.33",
"friendsofphp/php-cs-fixer": "^3.95.1",
"symplify/easy-coding-standard": "^12.6.2",
"brainmaestro/composer-git-hooks": "@dev",
"rector/swiss-knife": "^2.3.5",
"phpmd/phpmd": "^2.15"
},
"autoload": {
"psr-4": {
"Html\\TwigComponentBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"symfony": {
"require": "^5.4|^6.0|^7.0|^8.0"
}
},
"version": "0.3.4",
"scripts": {
"test": "XDEBUG_MODE=off vendor/bin/pest --exclude-group=benchmark",
"test:coverage": "composer run test:coverage:unit",
"test:coverage:unit": "XDEBUG_MODE=coverage vendor/bin/pest tests/Unit --exclude-group=external-bin --coverage-clover=clover.xml",
"test:coverage:html": "composer run test:coverage:html:unit && composer run test:coverage:html:integration",
"test:coverage:html:unit": "XDEBUG_MODE=coverage vendor/bin/pest tests/Unit --exclude-group=external-bin --coverage-html=coverage-report",
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --no-ansi --fix",
"phpstan": "phpstan --memory-limit=1G",
"phpmd": "@php -d memory_limit=1G -d error_reporting='E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED' vendor/bin/phpmd ./src text phpmd.xml",
"post-install-cmd": "@git-hooks-init",
"post-update-cmd": "@git-hooks-update",
"swiss-knife-check-conflicts": "vendor/bin/swiss-knife check-conflicts ./src --ansi",
"swiss-knife-check-commented-code": "vendor/bin/swiss-knife check-commented-code ./src --line-limit 4 --no-ansi",
"swiss-knife-find-multi-classes": "vendor/bin/swiss-knife find-multi-classes ./src --ansi",
"swiss-knife-finalize-classes": "vendor/bin/swiss-knife finalize-classes ./src --ansi",
"swiss-knife-privatize-constants": "vendor/bin/swiss-knife privatize-constants ./src --ansi"
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/vardumper"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/vardumper"
},
{
"type": "custom",
"url": "https://www.patreon.com/vardumper"
}
]
}