-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
36 lines (35 loc) · 1.18 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
{
"name": "awesomemotive/wp-mail-logging",
"description": "WordPress plugin that logs each email sent by WordPress.",
"type": "wordpress-plugin",
"keywords": ["mail", "email", "log", "logging", "debug", "list", "store", "collect", "view"],
"homepage": "https://github.com/awesomemotive/wp-mail-logging",
"require": {
"php": ">=7.1"
},
"require-dev": {
"bocharsky-bw/arrayzy": "v0.1.1",
"mockery/mockery": "2.0.x-dev"
},
"license": "GPL-2.0",
"support": {
"issues": "https://github.com/awesomemotive/wp-mail-logging/issues",
"source": "https://github.com/awesomemotive/wp-mail-logging/releases"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"No3x\\WPML\\Tests\\": "tests/phpunit/tests",
"No3x\\WPML\\Tests\\Helper\\": "tests/helper",
"No3x\\WPML\\Admin\\": "src/inc/Admin",
"No3x\\WPML\\Helpers\\": "src/inc/Helpers",
"No3x\\WPML\\Migration\\": "src/inc/Migration"
}
},
"scripts": {
"build": [
"npm run gulp composer:delete_vendor",
"composer install --no-dev --no-plugins -o"
]
}
}