-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
49 lines (49 loc) · 1.14 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
{
"name": "akeeba/sociallogin",
"description": "Akeeba SocialLogin – A social login solution for Joomla!",
"minimum-stability": "stable",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Nicholas K. Dionysopoulos",
"homepage": "https://www.akeeba.com",
"role": "Lead Developer"
}
],
"config": {
"platform": {
"php": "7.4.0"
}
},
"require": {
"php": ">=7.4 <8.4",
"ext-json": "*",
"ext-simplexml": "*",
"coenjacobs/mozart": "^0.7.1",
"lcobucci/jwt": "^4.0",
"codercat/jwk-to-pem": "<= 1.0.0",
"phpseclib/bcmath_compat": "^1.0.0"
},
"extra": {
"mozart": {
"dep_namespace": "Akeeba\\Plugin\\System\\SocialLogin\\Dependencies\\",
"dep_directory": "/plugins/system/sociallogin/src/Dependencies/",
"classmap_directory": "/plugins/system/sociallogin/src/classmap/",
"classmap_prefix": "AK_SOCIALLOGIN_",
"delete_vendor_directories": false,
"excluded_packages": [
"coenjacobs/mozart"
]
}
},
"scripts": {
"post-install-cmd": [
"\"vendor/bin/mozart\" compose",
"composer dump-autoload"
],
"post-update-cmd": [
"\"vendor/bin/mozart\" compose",
"composer dump-autoload"
]
}
}