-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
89 lines (89 loc) · 3.28 KB
/
composer.json
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
{
"name": "webspark/statsapp",
"license": "GPL-3.0",
"type": "project",
"description": "Application for collecting and processing statistics from remote applications",
"autoload": {
"psr-4": {
"Mautic\\StatsBundle\\": "src/"
},
"classmap": [
"app/AppCache.php",
"app/AppKernel.php"
]
},
"autoload-dev": {
"psr-4": {
"Mautic\\StatsBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.3.0",
"symfony/class-loader": "3.4.*",
"symfony/config": "3.4.*",
"symfony/dependency-injection": "3.4.*",
"symfony/finder": "3.4.*",
"symfony/framework-bundle": "3.4.*",
"symfony/http-foundation": "3.4.*",
"symfony/http-kernel": "3.4.*",
"symfony/monolog-bundle": "^3.2",
"symfony/translation": "3.4.*",
"symfony/twig-bridge": "3.4.*",
"symfony/twig-bundle": "3.4.*",
"symfony/routing": "3.4.*",
"symfony/yaml": "3.4.*",
"doctrine/orm": "^2.5.2",
"doctrine/doctrine-bundle": "^1.10",
"ekino/newrelic-bundle": "^1.3.2",
"friendsofsymfony/rest-bundle": "^1.7.4",
"jms/serializer-bundle": "~1.1",
"sensio/distribution-bundle": "~5.0",
"sensio/framework-extra-bundle": "~3.0",
"twig/twig": "^2",
"symfony/templating": "3.4.*",
"symfony/asset": "3.4.*"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.4",
"symfony/css-selector": "3.4.*",
"symfony/debug": "3.4.*",
"symfony/dom-crawler": "3.4.*",
"symfony/phpunit-bridge": "3.4.*",
"symfony/validator": "3.4.*",
"symfony/web-profiler-bundle": "3.4.*",
"symfony/stopwatch": "3.4.*",
"phpunit/phpunit": "^8",
"liip/functional-test-bundle": "^4.2",
"liip/test-fixtures-bundle": "^1.11",
"phpstan/phpstan": "^0.12.69"
},
"scripts": {
"post-install-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"post-update-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
]
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-tests-dir": "tests",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-assets-install": "relative"
},
"config": {
"platform": {
"php": "7.3.25"
}
}
}