-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.35 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
{
"name": "nerdcel/kirby-oauth2-email",
"description": "Kirby Plugin to setup OAuth for SMTP Mail (e.g. Outlook, Gmail, Yahoo, etc.)",
"license": "MIT",
"type": "kirby-plugin",
"authors": [
{
"name": "Marcel Hieke",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.3",
"getkirby/composer-installer": "^1.1",
"decomplexity/sendoauth2": "^v4.1.0",
"ext-mbstring": "*",
"ext-openssl": "*",
"stevenmaguire/oauth2-microsoft": "^2.2.0",
"greew/oauth2-azure-provider": "^v2.0.0",
"hayageek/oauth2-yahoo": "^2.0.5",
"league/oauth2-google": "^4.0.1",
"psr/log": "^3.0.2",
"thenetworg/oauth2-azure": "^v2.2.2",
"symfony/polyfill-mbstring": "v1.31.0"
},
"require-dev": {
"getkirby/cms": "^4.5.0",
"phpmailer/phpmailer": "^v6.9.3"
},
"autoload": {
"psr-4": {
"Nerdcel\\OAuth2Email\\": "src/classes"
}
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"scripts": {
"build-composer": "composer install --no-dev --optimize-autoloader",
"build-release": [
"composer install --no-dev --optimize-autoloader"
]
}
}