forked from Leantime/leantime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
123 lines (115 loc) · 3.59 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
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
{
"name": "leantime/leantime",
"description": "Open source project management system",
"version": "3.2.1",
"type": "project",
"config": {
"platform-check": false,
"platform": {
"php": "8.1.13"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"metasyntactical/composer-plugin-license-check": true,
"php-http/discovery": true,
"phpstan/extension-installer": true
}
},
"authors": [
{
"name": "Marcel",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/leantime/leantime-documentor.git"
}
],
"require": {
"php": "^8.1.13",
"ext-ldap": "*",
"ext-pdo": "*",
"ext-zip": "*",
"ext-fileinfo": "*",
"guzzlehttp/guzzle": "^7.9.2",
"aws/aws-sdk-php": "^3.314",
"phpmailer/phpmailer": "6.6.0",
"robthree/twofactorauth": "1.8.2",
"endroid/qr-code": "3.9.7",
"league/html-to-markdown": "5.1",
"ramsey/uuid": "^4.3",
"htmlawed/htmlawed": "1.2.6",
"vlucas/phpdotenv": "^5.5",
"lasserafn/php-initial-avatar-generator": "^4.2",
"guzzlehttp/oauth-subscriber": "^0.6.0",
"kamermans/guzzle-oauth2-subscriber": "^1.0",
"league/csv": "^9.8",
"dragonmantank/cron-expression": "^3.3",
"illuminate/container": "^10.0",
"illuminate/contracts": "^10.0",
"illuminate/view": "^10.0",
"illuminate/events": "^10.0",
"illuminate/filesystem": "^10.0",
"illuminate/bus": "^10.0",
"illuminate/http": "^10.0",
"illuminate/console": "^10.0",
"illuminate/pipeline": "^10.0",
"illuminate/cache": "^10.0",
"illuminate/session": "^10.0",
"illuminate/encryption": "^10.0",
"illuminate/redis": "^10.0",
"illuminate/log": "^10.0",
"filp/whoops": "^2.14",
"vedmant/laravel-feed-reader": "^1.6",
"symfony/http-foundation": "^6.3",
"symfony/error-handler": "^6.3",
"symfony/yaml": "^5.4",
"symfony/console": "^6.3",
"symfony/cache": "^6.3",
"nikic/php-parser": "^4.17",
"nesbot/carbon": "^2.72",
"spatie/icalendar-generator": "^2.6",
"carbon-cli/carbon-cli": "^1.2",
"metasyntactical/composer-plugin-license-check": "^2.1",
"ext-fileinfo": "*",
"sentry/sdk": "^3.5",
"predis/predis": "^2.2",
"phpseclib/phpseclib": "~3.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.8",
"codeception/codeception": "^5.0",
"codeception/module-phpbrowser": "*",
"codeception/module-asserts": "*",
"codeception/module-db": "^3.1",
"codeception/module-webdriver": "^3.2",
"phpcsstandards/phpcsextra": "^1.2.1",
"zebra-north/phpcs-short-types": "^1.0",
"phpstan/phpstan": "^1.10",
"leantime/leantime-documentor": "@dev",
"phpstan/extension-installer": "^1.4",
"codeception/stub": "^4.1"
},
"autoload": {
"psr-4": {
"Leantime\\": ["custom/", "app/"]
},
"files": [
"app/helpers.php"
]
},
"extra": {
"installer-paths": {
"app/Plugins/{$name}/": [
"type:leantime-plugin"
]
},
"carbon": {
"macros": [
"Leantime\\Core\\Support\\CarbonMacros"
]
}
}
}