-
-
Notifications
You must be signed in to change notification settings - Fork 596
/
composer.json
155 lines (154 loc) · 4.54 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "leantime/leantime",
"description": "Open source project management system",
"version": "3.3",
"type": "project",
"license": "AGPL-3.0",
"config": {
"platform-check": false,
"platform": {
"php": "8.2.0"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"metasyntactical/composer-plugin-license-check": true,
"php-http/discovery": true,
"phpstan/extension-installer": true,
"wikimedia/composer-merge-plugin": true
}
},
"authors": [
{
"name": "Marcel Folaron",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/leantime/leantime-documentor.git"
}
],
"require": {
"php": "^8.2",
"ext-ldap": "*",
"ext-mysqli": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-zip": "*",
"ext-pdo_mysql": "*",
"ext-mbstring": "*",
"ext-pcntl": "*",
"ext-posix": "*",
"ext-bcmath": "*",
"ext-simplexml": "*",
"ext-phar": "*",
"ext-openssl": "*",
"ext-gd": "*",
"ext-fileinfo": "*",
"laravel/framework": "^10.48",
"filp/whoops": "^2.14",
"guzzlehttp/guzzle": "^7.9",
"aws/aws-sdk-php": "^3.314",
"phpmailer/phpmailer": "^6.6",
"robthree/twofactorauth": "^1.8",
"endroid/qr-code": "^3.9",
"league/html-to-markdown": "^5.1",
"ramsey/uuid": "^4.3",
"htmlawed/htmlawed": "^1.2",
"symfony/dotenv": "^7.1.6",
"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",
"vedmant/laravel-feed-reader": "^1.6",
"psr/container": "^1.1.1|^2.0.1",
"psr/log": "^1.0|^2.0|^3.0",
"psr/simple-cache": "^1.0|^2.0|^3.0",
"symfony/cache": "^6.2",
"symfony/console": "^6.2",
"symfony/error-handler": "^6.2",
"symfony/finder": "^6.2",
"symfony/http-foundation": "^6.4",
"symfony/http-kernel": "^6.2",
"symfony/mailer": "^6.2",
"symfony/mime": "^6.2",
"symfony/process": "^6.2",
"symfony/routing": "^6.2",
"symfony/uid": "^6.2",
"symfony/var-dumper": "^6.2",
"nikic/php-parser": "^4.17",
"nesbot/carbon": "^2.72",
"predis/predis": "^2.2",
"sentry/sentry-laravel": "^4.8",
"symfony/http-client": "^6.2.4",
"symfony/psr-http-message-bridge": "^2.0",
"carbon-cli/carbon-cli": "^1.2",
"metasyntactical/composer-plugin-license-check": "^2.1",
"phpseclib/phpseclib": "~3.0",
"spatie/icalendar-generator": "^2.6"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.8",
"codeception/codeception": "^5.1",
"codeception/module-phpbrowser": "*",
"codeception/module-asserts": "^3.0",
"codeception/module-db": "^3.1",
"codeception/module-webdriver": "^3.2",
"codeception/stub": "^4.1",
"codeception/module-laravel": "^3.1",
"codeception/module-rest": "^3.4",
"phpcsstandards/phpcsextra": "^1.2.1",
"zebra-north/phpcs-short-types": "^1.0",
"laravel/pint": "^1.17",
"phpstan/phpstan": "^1.10",
"leantime/leantime-documentor": "dev-main"
},
"provide": {
"psr/container-implementation": "1.1|2.0",
"psr/simple-cache-implementation": "1.0|2.0|3.0"
},
"autoload": {
"psr-4": {
"Leantime\\": [
"app/"
],
"": "app/"
},
"files": [
"app/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Leantime\\": [
"app/"
],
"Unit\\": [
"tests/Unit/"
],
"": "app/"
},
"files": [
"app/helpers.php"
]
},
"extra": {
"installer-paths": {
"app/Plugins/{$name}/": [
"type:leantime-plugin"
]
},
"carbon": {
"macros": [
"Leantime\\Core\\Support\\CarbonMacros"
]
},
"merge-plugin": {
"include": [
"app/Plugins/*/composer.json"
]
}
}
}