-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 lines (49 loc) · 1.25 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": "abhijitrakas/wp-cli-notification",
"description": "Package extends default WP-CLI notification functionality to show desktop notifications",
"type": "wp-cli-package",
"homepage": "https://github.com/abhijitrakas/wp-cli-notification",
"require": {
"php": ">=7.0",
"jolicode/jolinotif": "^2.2.0",
"symfony/process": "^3.3.0",
"wp-cli/wp-cli": "^2.4"
},
"require-dev": {
"wp-cli/wp-cli-tests": "^2.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"process-timeout": 7200,
"sort-packages": true
},
"autoload": {
"psr-4": {
"WP_CLI\\Notification\\": "src/"
},
"files": [
"wpcli-notification.php"
]
},
"license": "MIT",
"scripts": {
"lint": "run-linter-tests",
"phpcs": "run-phpcs-tests",
"phpcbf": "./vendor/bin/phpcbf",
"test": [
"@lint",
"@phpcs",
"@phpcbf"
]
},
"authors": [
{
"name": "Abhijit Rakas",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/abhijitrakas/wp-cli-notification/issues"
}
}