forked from wecreatesolutions/postmark-inbound
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 1.97 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
{
"name": "wecreatesolutions/postmark-inbound",
"description": "Convenience library for postmark inbound email parsing.",
"keywords": [
"postmark",
"inbound",
"e-mail",
"webhook"
],
"license": "MIT",
"homepage": "https://github.com/wecreatesolutions/postmark-inbound",
"require": {
"php": ">=8.1.0"
},
"authors": [
{
"name": "Alex Buis",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"WeCreateSolutions\\Postmark\\": "src/"
},
"exclude-from-classmap": [
"/Tests/"
]
},
"repositories": [
{
"type": "composer",
"url": "https://php-packages.wecreatesolutions.nl"
}
],
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"bin-dir": "bin"
},
"require-dev": {
"phan/phan": "^5.3",
"phpstan/phpstan": "^1.9.3",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.4",
"phpstan/phpstan-symfony": "^1.0",
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.15",
"squizlabs/php_codesniffer": "^3.7",
"wecreatesolutions/codestandards": "^2.1"
},
"scripts": {
"qa-fix": [
"php bin/phpcbf || (printf '\\a' && sleep 10)",
"php bin/rector || (printf '\\a' && sleep 10)",
"@qa-dev"
],
"rector-dry": [
"php bin/rector --dry-run"
],
"qa-dev": [
"php bin/phpcs || (printf '\\a' && sleep 10)",
"php bin/phpstan analyze || (printf '\\a' && sleep 10)",
"php bin/rector --dry-run || (printf '\\a' && sleep 10)",
"php bin/phpunit --colors=always --stop-on-error --stop-on-failure --columns max || (printf '\\a' && sleep 10)"
],
"qa-dev-forever": [
"while [ true ]; do composer qa-dev;sleep 1;printf '=%.0s' {1..100};echo ''; done;"
]
}
}