-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
128 lines (128 loc) · 4.4 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
{
"name": "enhanced-athlete/ea-wp-aws-ses-bounce-handler",
"description": "Unsubscribe users from email lists when AWS SES sends a bounce or complaint report.",
"type": "wordpress-plugin",
"license": "GPL-2.0+-or-later",
"authors": [
{
"name": "Brian Henry",
"email": "BrianHenryIE@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"process-timeout": 0
},
"repositories": [
{
"url": "https://github.com/WordPress/wordpress-develop",
"type": "git"
},
{
"type":"composer",
"url":"https://wpackagist.org"
},
{
"url": "https://github.com/BrianHenryIE/WPPB-lib",
"type": "git"
},
{
"url": "https://github.com/pablo-sg-pacheco/wp-namespace-autoloader",
"type": "git"
},
{
"url": "https://github.com/BrianHenryIE/composer-phpstorm",
"type": "git"
}
],
"require": {
"php": ">=7.2",
"brianhenryie/wppb-lib": "dev-master",
"pablo-sg-pacheco/wp-namespace-autoloader": "dev-master"
},
"require-dev": {
"10up/wp_mock": "0.4.2",
"brianhenryie/composer-phpstorm": "dev-master",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"codeception/module-db": "^1.0.0",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-webdriver": "^1.0",
"codeception/module-filesystem": "^1.0",
"codeception/util-universalframework": "^1.0",
"codeception/module-cli": "^1.0",
"coenjacobs/mozart": "dev-master",
"cweagans/composer-patches": "~1.0",
"jaschilz/php-coverage-badger": "^2.0",
"kporras07/composer-symlinks": "dev-master",
"phpunit/phpunit": ">=7.0",
"phpunit/phpcov": "^5.0",
"phpcompatibility/phpcompatibility-wp": "*",
"lucatume/wp-browser": "*",
"codeception/module-asserts": "^1.0",
"wordpress/wordpress": "^5.4",
"wp-coding-standards/wpcs": "*",
"wpackagist-plugin/mailpoet":"*",
"wpackagist-plugin/newsletter":"*",
"wpackagist-theme/twentytwenty": "*",
"wpackagist-theme/storefront": "*",
"wpackagist-plugin/woocommerce": ">4",
"voku/portable-ascii": "dev-master"
},
"extra": {
"patches": {
"coenjacobs/mozart": {
"DIRECTORY_SEPARATOR": "https://github.com/coenjacobs/mozart/pull/61.patch",
"Delete empty directories": "https://github.com/coenjacobs/mozart/pull/59.patch"
},
"jaschilz/php-coverage-badger": {
"Allow customising the text": "https://github.com/JASchilz/PHPCoverageBadge/pull/1.patch"
}
},
"mozart": {
"dep_namespace": "EA_WP_AWS_SES_Bounce_Handler\\",
"dep_directory": "/src/vendor/",
"classmap_directory": "/src/dependencies/",
"classmap_prefix": "EA_WP_AWS_SES_Bounce_Handler_",
"delete_vendor_directories": false
},
"symlinks": {
"wp-content": "wordpress/wp-content",
"src": "wp-content/plugins/ea-wp-aws-ses-bounce-handler"
},
"phpstorm": {
"exclude_folders": {
"folders": [
"vendor/wordpress/wordpress/src",
"vendor/wordpress/wordpress/build",
"wordpress/wp-content",
"wp-content/plugins/ea-wp-aws-ses-bounce-handler"
],
"include_folders": [
"vendor/wordpress/wordpress/"
],
"composer-symlinks": false
}
}
},
"scripts": {
"post-install-cmd": [
"\"vendor/bin/mozart\" compose",
"vendor/bin/wp core download --path=wordpress || true;",
"export $(grep -v '^#' .env.testing | xargs); vendor/bin/wp config create --dbname=$TEST_SITE_DB_NAME --dbuser=$TEST_SITE_DB_USER --dbpass=$TEST_SITE_DB_PASSWORD || true",
"Kporras07\\ComposerSymlinks\\ScriptHandler::createSymlinks",
"mkdir -p wordpress/wp-content/uploads",
"BrianHenryIE\\ComposerPhpStorm\\ExcludeFolders::update",
"BrianHenryIE\\ComposerPhpStorm\\PHPUnitRunConfigurations::update"
],
"post-update-cmd": [
"\"vendor/bin/mozart\" compose",
"vendor/bin/wp core download --path=wordpress || true;",
"export $(grep -v '^#' .env.testing | xargs); vendor/bin/wp config create --dbname=$TEST_SITE_DB_NAME --dbuser=$TEST_SITE_DB_USER --dbpass=$TEST_SITE_DB_PASSWORD || true",
"Kporras07\\ComposerSymlinks\\ScriptHandler::createSymlinks",
"mkdir -p wordpress/wp-content/uploads",
"BrianHenryIE\\ComposerPhpStorm\\ExcludeFolders::update",
"BrianHenryIE\\ComposerPhpStorm\\PHPUnitRunConfigurations::update"
]
}
}