-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
81 lines (81 loc) · 3.15 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
{
"name": "ultimatemember/um-extended",
"description": "Extended features & functionalities of Ultimate Member",
"type": "wordpress-plugin",
"homepage": "https://ultimatemember.com/",
"license": "GPL-3.0-or-later",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "Ultimate Member Group Ltd.",
"email": "[email protected]"
}
],
"scripts": {
"compile-ext": [
"php build/compile-extensions.php"
],
"helpscout_sync": [
"php docs/ultimatemember/helpscout.php"
]
},
"autoload": {
"psr-4": {
"UM_Extended\\": "src",
"UM_Extended_Block_Emails\\": "src/um-block-emails/src",
"UM_Extended_Browser_Detect\\": "src/um-browser-detect/src",
"UM_Extended_Capitalize_Name\\": "src/um-capitalize-name/src",
"UM_Extended_Country_Flag\\": "src/um-country-flag/src",
"UM_Extended_Cover_Photo\\": "src/um-cover-photo/src",
"UM_Extended_Cron_Delete\\": "src/um-cron-delete/src/",
"UM_Extended_Cronjob_Activation_Email\\": "src/um-cronjob-activation-email/src/",
"UM_Extended_Dummy_Accounts\\": "src/um-dummy-accounts/src/",
"UM_Extended_Fields_Counter\\": "src/um-fields-counter/src/",
"UM_Extended_Math_Captcha\\": "src/um-math-captcha/src/",
"UM_Extended_Pass_Strength\\": "src/um-pass-strength/src/",
"UM_Extended_Profile_Photo\\": "src/um-profile-photo/src",
"UM_Extended_Regenerate_Thumbnails\\": "src/um-regenerate-thumbnails/src/",
"UM_Extended_Set_Password\\": "src/um-set-password/src/",
"UM_Extended_User_Shortcode\\": "src/um-user-shortcode/src/",
"UM_Extended_Vcard\\": "src/um-vcard/src/",
"UM_Extended_Yoast_Seo\\": "src/um-yoast-seo/src/",
"UM_WPCLI\\": "src/um-wpcli/src/",
"UM_Extended_Profile_Slug\\": "src/um-profile-slug/src/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/champsupertramp/phpdoc-vuepress"
},
{
"type": "vcs",
"url": "https://github.com/champsupertramp/html-to-markdown"
}
],
"require-dev": {
"wp-cli/wp-cli": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"object-calisthenics/phpcs-calisthenics-rules": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"wp-coding-standards/wpcs": "2.3.0",
"squizlabs/php_codesniffer": "3.*",
"phpdocumentor/phpdocumentor": "3.1.*",
"champsupertramp/phpdoc-vuepress": "dev-master",
"champsupertramp/html-to-markdown": "dev-master",
"vlucas/phpdotenv": "^5.5",
"league/html-to-markdown": "^5.1"
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"cbschuld/browser.php": "^1.9",
"kmlpandey77/math-captcha": "^1.0",
"jeroendesloovere/vcard": "dev-2.0.0-dev"
}
}