-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
134 lines (134 loc) · 5.17 KB
/
composer.json
File metadata and controls
134 lines (134 loc) · 5.17 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
133
134
{
"name": "nowo-tech/performance-bundle",
"description": "Symfony bundle for tracking and analyzing route performance metrics. Records request time, database queries count, and query execution time for performance analysis.",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"symfony",
"symfony-bundle",
"bundle",
"performance",
"metrics",
"monitoring",
"profiling",
"route-performance",
"query-tracking",
"performance-analysis",
"doctrine",
"doctrine-orm",
"orm",
"database",
"mysql",
"postgresql",
"sqlite"
],
"homepage": "https://github.com/nowo-tech/performance-bundle",
"support": {
"issues": "https://github.com/nowo-tech/performance-bundle/issues",
"source": "https://github.com/nowo-tech/performance-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/framework-bundle": "^6.0 || ^7.0 || ^8.0",
"symfony/form": "^6.0 || ^7.0 || ^8.0",
"symfony/yaml": "^6.0 || ^7.0 || ^8.0",
"symfony/security-bundle": "^6.0 || ^7.0 || ^8.0",
"symfony/stopwatch": "^6.0 || ^7.0 || ^8.0",
"symfony/translation": "^6.0 || ^7.0 || ^8.0",
"symfony/twig-bundle": "^6.0 || ^7.0 || ^8.0",
"symfony/var-exporter": "^6.0 || ^7.0 || ^8.0",
"symfony/ux-icons": "^2.0 || ^3.0",
"doctrine/dbal": "^3.8.2 || ^4.0",
"doctrine/orm": "^2.13 || ^3.0",
"doctrine/doctrine-bundle": "^2.8 || ^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/extension-installer": "^1.0",
"symfony/browser-kit": "^6.0 || ^7.0 || ^8.0",
"symfony/dom-crawler": "^6.0 || ^7.0 || ^8.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^10.0",
"rector/rector": "^2.0",
"symfony/http-client": "^6.0 || ^7.0 || ^8.0",
"symfony/mailer": "^6.0 || ^7.0 || ^8.0",
"symfony/mime": "^6.0 || ^7.0 || ^8.0",
"symfony/ux-twig-component": "^2.0 || ^3.0"
},
"suggest": {
"symfony/http-client": "For webhook notifications (Slack, Teams, custom webhooks)",
"symfony/mailer": "For email notifications",
"symfony/ux-twig-component": "For dashboard Twig Component mode ({{ component() }}); without it, the bundle uses traditional Twig includes"
},
"autoload": {
"psr-4": {
"Nowo\\PerformanceBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nowo\\PerformanceBundle\\Tests\\": "tests/"
}
},
"archive": {
"exclude": ["/demo", "/.cursor"]
},
"config": {
"sort-packages": true,
"process-timeout": 600,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --process-isolation --coverage-text --coverage-html coverage --coverage-clover coverage.xml",
"test-coverage-90": "@test-coverage && php scripts/check-coverage.php coverage.xml --min-percent=90",
"test-coverage-100": "@test-coverage && php scripts/check-coverage.php coverage.xml --min-percent=100",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"rector": "rector process",
"rector-dry": "rector process --dry-run --no-progress-bar",
"phpstan": "phpstan analyse --memory-limit=512M",
"deps-update": "composer update --no-interaction",
"deps-validate": "composer validate --strict",
"validate-translations": "php scripts/validate-translations-yaml.php src/Resources/translations",
"qa": [
"@cs-check",
"@validate-translations",
"@test"
]
},
"scripts-descriptions": {
"test": "Run PHPUnit tests",
"test-coverage": "Run PHPUnit tests with code coverage",
"test-coverage-90": "Run test-coverage and fail if coverage is below 90%",
"test-coverage-100": "Run test-coverage and fail if coverage is below 100%",
"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",
"deps-update": "Update composer.lock (composer update)",
"deps-validate": "Validate composer.json (composer validate --strict)",
"validate-translations": "Validate translation YAML files (syntax and duplicate keys)",
"qa": "Run all quality assurance checks"
}
}