-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 2 KB
/
Copy pathcomposer.json
File metadata and controls
65 lines (65 loc) · 2 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
{
"name": "2a/symfony-performance-analyzer",
"description": "Bundle to monitor and analyze performance of Symfony applications",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Anis Ajengui",
"homepage": "https://github.com/ajenguianis"
}
],
"autoload": {
"psr-4": {
"AA\\PerformanceAnalyzer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\AA\\PerformanceAnalyzer\\": "tests/"
}
},
"require": {
"php": ">=8.3",
"symfony/framework-bundle": "^7.0",
"nikic/php-parser": "^5.0",
"doctrine/orm": "^3.0",
"symfony/asset": "^6.0|^7.0",
"symfony/console": "^7.0",
"symfony/ux-twig-component": "^2.25",
"symfony/dependency-injection": "^6.0|^7.0",
"symfony/http-kernel": "^6.0|^7.0",
"symfony/http-client": "7.2.*",
"symfony/twig-bundle": "^7.0",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^10.0",
"rector/rector": "^1.0",
"symplify/easy-coding-standard": "^12.0",
"symfony/var-dumper": "^7.0",
"symfony/profiler-pack": "^1.0"
},
"scripts": {
"post-install-cmd": [
"npm install",
"npm run build",
"php bin/console assets:install --symlink",
"php bin/console performance-analyzer:build-cleanup-config"
],
"post-update-cmd": [
"npm install",
"npm run build",
"php bin/console assets:install --symlink",
"php bin/console performance-analyzer:build-cleanup-config"
],
"post-package-uninstall": [
"php bin/console performance-analyzer:purge-package --package=$COMPOSER_PACKAGE_NAME"
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"keywords": ["symfony", "performance", "analyzer", "n-plus-one", "ai-recommendations", "dashboard"],
"homepage": "https://github.com/ajenguianis/symfony-performance-analyzer"
}