-
Notifications
You must be signed in to change notification settings - Fork 96
/
composer.json
76 lines (76 loc) · 2.19 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
{
"name": "buddypress/buddypress",
"description": "BuddyPress adds community features to WordPress. Member Profiles, Activity Streams, Direct Messaging, Notifications, and more!",
"type": "wordpress-plugin",
"keywords": [
"activity",
"community",
"friends",
"groups",
"messaging",
"notifications",
"profiles",
"social network"
],
"homepage": "https://buddypress.org",
"license": "GPL-2.0+",
"authors": [ {
"name": "BuddyPress Community",
"homepage": "https://buddypress.org/about/"
} ],
"support": {
"forum": "https://buddypress.org/support/",
"docs": "https://codex.buddypress.org/",
"issues": "https://buddypress.trac.wordpress.org/",
"rss": "https://buddypress.org/feed/",
"source": "https://buddypress.trac.wordpress.org/browser/",
"wiki": "https://codex.buddypress.org/"
},
"require": {
"composer/installers": "~1.0",
"php": ">=5.3.0",
"php-ffmpeg/php-ffmpeg": "^0.16.0",
"maennchen/zipstream-php": "^2.1"
},
"require-dev": {
"symfony/var-dumper": "^4.2",
"phpunit/phpunit": "6.1.0",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"squizlabs/php_codesniffer": "^3.4.0",
"wp-coding-standards/wpcs": "*"
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ld": "TEST_LEARNDASH=yes vendor/bin/phpunit --testsuite=learndash",
"lint-php": "vendor/bin/phpcs -s",
"lint-php-fix": "vendor/bin/phpcbf",
"lint-js": "grunt jsvalidate jshint",
"lint-css": "grunt stylelint",
"lint": ["@lint-php", "@lint-js", "@lint-css"],
"scoper": [
"rm -rf vendor",
"rm -rf scoped_vendor",
"composer install --no-dev",
"php-scoper add-prefix vendor includes/Library/Composer/Src --output-dir=scoped_vendor --prefix BuddyBossPlatform",
"rm -rf vendor",
"mv scoped_vendor/vendor vendor/",
"cp -r scoped_vendor/includes/Library/Composer/Src/* includes/Library/Composer",
"rm -rf scoped_vendor",
"composer dumpautoload --optimize",
"php bin/bb-scoper-prefixer.php"
]
},
"config": {
"platform-check": false,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"classmap": [
"includes/"
]
}
}