forked from Runalyze/Runalyze
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
86 lines (86 loc) · 3.02 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
{
"name": "runalyze/runalyze",
"description": "RUNALYZE - training analysis for athletes",
"homepage": "https://runalyze.com",
"version": "4.3.0",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "~7",
"symfony/symfony": "~3.4.49",
"sensio/framework-extra-bundle": "~5.4",
"twig/twig": "~1.44",
"monolog/monolog": "^1.26",
"nojacko/email-validator": "~1.0",
"league/geotools": "^0.8.3",
"swiftmailer/swiftmailer": "~6.3",
"phpfastcache/phpfastcache": "~3",
"twig/extensions": "^1.5",
"doctrine/doctrine-bundle": "~1.12",
"doctrine/orm": "^2.7",
"symfony/monolog-bundle": "~3.6",
"doctrine/doctrine-migrations-bundle": "^2.2",
"doctrine/doctrine-cache-bundle": "^1.4",
"runalyze/dem-reader": "^1.1",
"runalyze/age-grade": "^1.2",
"symfony/swiftmailer-bundle": "^3.2",
"beberlei/doctrineextensions": "~1.3",
"jms/translation-bundle": "~1.7",
"bernard/bernard-bundle": "^2.0.0",
"runalyze/gpxtrackposter": "^1.0.0",
"runalyze/glossary": "v4.3.0",
"snc/redis-bundle": "^3.6",
"predis/predis": "^1.0",
"guzzlehttp/guzzle": "^7.0",
"p3k/picofeed": "^0.1.40",
"laminas/laminas-zendframework-bridge": "^1.6",
"runalyze/translations": "dev-master"
},
"autoload": {
"files": ["src/functions.php", "app/AppKernel.php"],
"classmap": ["inc/", "plugin/"],
"exclude-from-classmap": ["inc/core/"],
"psr-4": {
"DoctrineExtensions\\": "vendor/beberlei/DoctrineExtensions/src",
"Runalyze\\": "inc/core/",
"Runalyze\\Bundle\\GlossaryBundle\\": "vendor/runalyze/glossary",
"Runalyze\\Bundle\\CoreBundle\\Tests\\": "tests/CoreBundle",
"Runalyze\\Bundle\\": "src/",
"Runalyze\\Tests\\": "tests/inc/core/"
}
},
"require-dev": {
"liip/functional-test-bundle": "^4.3.0",
"liip/test-fixtures-bundle": "^1.12.0",
"doctrine/doctrine-fixtures-bundle": "^3.4",
"phpunit/phpunit": "8.5.*"
},
"repositories": [
{
"type": "package",
"package": {
"name": "runalyze/gpxtrackposter",
"version": "1.0.2",
"source": {
"url": "https://github.com/codeproducer198/GpxTrackPoster.git",
"type": "git",
"reference": "8b337ca89e1cf9552dc0bbb08d8b81bc55335c45"
}
}
},
{
"type": "package",
"package": {
"name": "runalyze/glossary",
"version": "v4.3.0",
"source": {
"url": "https://github.com/codeproducer198/Runalyze-Glossary.git",
"type": "git",
"reference": "v4.3.0"
}
}
}],
"config": {
"preferred-install": "dist"
}
}