-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (91 loc) · 2.85 KB
/
composer.json
File metadata and controls
91 lines (91 loc) · 2.85 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
{
"name": "xutimcms/analytics-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle for privacy-first, anonymized analytics tracking.",
"prefer-stable": true,
"minimum-stability": "dev",
"keywords": [
"cms",
"xutim",
"symfony",
"analytics",
"bundle",
"privacy",
"symfony-ux"
],
"homepage": "https://xutim.com",
"license": "MIT",
"authors": [
{
"name": "Tomas Jakl",
"email": "tomasjakll@gmail.com"
}
],
"require": {
"php": ">=8.4",
"babdev/pagerfanta-bundle": "^4.5",
"doctrine/doctrine-bundle": "^2.13",
"doctrine/orm": "^3.3",
"pagerfanta/doctrine-orm-adapter": "^4.7",
"pagerfanta/twig": "^4.7",
"symfony/console": "7.3.*",
"symfony/form": "7.3.*",
"symfony/framework-bundle": "7.3.*",
"symfony/mailer": "7.3.*",
"symfony/messenger": "7.3.*",
"symfony/security-bundle": "7.3.*",
"symfony/uid": "7.3.*",
"symfony/ux-icons": "^2.23",
"symfony/ux-twig-component": "^2.17",
"symfony/validator": "7.3.*",
"twig/extra-bundle": "^3.20",
"twig/intl-extra": "^3.20",
"twig/string-extra": "^3.20",
"twig/twig": "^3.20",
"ua-parser/uap-php": "^3.10",
"xutimcms/core-bundle": "dev-main",
"xutimcms/domain": "dev-main",
"webmozart/assert": "^1.11",
"symfony/doctrine-messenger": "^7.3",
"symfony/scheduler": "^7.3"
},
"suggest": {
"symfony/ux-chartjs": "For visual charts in the analytics dashboard"
},
"require-dev": {
"dama/doctrine-test-bundle": "^8.2",
"doctrine/doctrine-fixtures-bundle": "^4.0",
"friendsoftwig/twigcs": "^6.5",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-doctrine": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpstan/phpstan-webmozart-assert": "^2.0",
"phpunit/phpunit": "^9.6",
"symfony/browser-kit": "7.3.*",
"symfony/debug-bundle": "7.3.*",
"symfony/maker-bundle": "^1.62",
"symfony/phpunit-bridge": "7.3.*",
"symfony/stopwatch": "7.3.*",
"symfony/ux-chartjs": "^2.32",
"symfony/web-profiler-bundle": "7.3.*",
"symplify/easy-coding-standard": "^12.5",
"vincentlanglet/twig-cs-fixer": "^3.5"
},
"autoload": {
"psr-4": {
"Xutim\\AnalyticsBundle\\": "src/"
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Xutim\\AnalyticsBundle\\Tests\\": "tests/"
}
}
}