This repository has been archived by the owner on Sep 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.8 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
{
"name": "netglue/zf-postmark",
"description": "Zend Framework Module to receive Webhooks sent by Postmark",
"type": "module",
"license": "MIT",
"authors" : [
{
"name" : "George Steel",
"email" : "[email protected]",
"homepage" : "https://netglue.uk/"
}
],
"require": {
"php": ">=7.1",
"ext-json" : "*",
"zendframework/zend-mvc": "^3",
"zendframework/zend-modulemanager": "^2",
"zendframework/zend-authentication": "^2",
"zendframework/zend-view": "^2",
"zendframework/zend-serializer": "^2",
"zendframework/zend-eventmanager": "^3.2",
"psr/log": "^1.0",
"zendframework/zend-crypt": "^2||^3"
},
"require-dev": {
"phpunit/phpunit": "^7",
"squizlabs/php_codesniffer": "^3.2",
"phpstan/phpstan": "^0.9.2",
"monolog/monolog": "^1.23",
"php-coveralls/php-coveralls": "^2.1"
},
"config" : {
"minimum-stability" : "stable",
"prefer-stable" : true
},
"autoload" : {
"psr-4" : {
"NetgluePostmark\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"NetgluePostmarkTest\\" : "test/NetgluePostmarkTest/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover build/clover.xml",
"analyse": "phpstan analyse --level=max src",
"upload-coverage": "php-coveralls -v"
},
"extra": {
"zf": {
"module": "NetgluePostmark",
"config-provider": "NetgluePostmark\\ConfigProvider"
}
}
}