This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.67 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
{
"name": "detailnet/dfw-notification-module",
"description": "Zend Framework Module for dfw-notification",
"type": "library",
"keywords": [
"dfw",
"detailnet",
"notification",
"module",
"zf"
],
"homepage": "https://github.com/detailnet/dfw-notification-module/",
"license": "MIT",
"require": {
"php": "^7.2",
"zendframework/zend-modulemanager": "^2.7.2",
"zendframework/zend-mvc": "^3.0.1",
"zendframework/zend-servicemanager": "^3.1",
"zendframework/zend-stdlib": "^3.0.1",
"detailnet/dfw-notification": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"squizlabs/php_codesniffer" : "^3.2",
"phpmd/phpmd": "^2.2",
"guzzlehttp/guzzle": "^6.0"
},
"suggest": {
"guzzlehttp/guzzle": "For usage of the Webhook sender"
},
"autoload": {
"psr-4": {
"Detail\\Notification\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DetailTest\\Notification\\": "tests/"
}
},
"scripts": {
"check": [
"@cs-check",
"@md-check",
"@test"
],
"cs-check": "phpcs --standard=phpcs.xml -v",
"cs-check-report": "phpcs --standard=phpcs.xml --report=checkstyle --report-file=build/checkstyle.xml",
"md-check": "phpmd src xml phpmd.xml",
"md-check-report": "phpmd src xml phpmd.xml --reportfile build/pmd.xml",
"test": "phpunit",
"test-coverage-html": "phpunit --coverage-html build/coverage",
"test-coverage-clover": "phpunit --coverage-clover build/clover.xml"
}
}