-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
78 lines (78 loc) · 2.26 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
78
{
"name": "peehaa/mailgrab",
"description": "Self contained mail catcher for debugging purposes",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Pieter Hordijk",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/PeeHaa/PharBuilder",
"no-api": true
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1",
"amphp/http-server": "^0.8.1",
"amphp/http-server-router": "^1.0",
"amphp/http-server-static-content": "dev-master",
"amphp/log": "^1.0",
"amphp/process": "^0.3.3",
"amphp/socket": "^0.10.5",
"amphp/websocket-server": "dev-master",
"myclabs/php-enum": "^1.5",
"peehaa/amp-websocket-command": "dev-master",
"peehaa/array-path": "^1.0",
"ramsey/uuid": "^3.7",
"rdlowrey/auryn": "^1.4",
"zbateson/mail-mime-parser": "^0.4.8"
},
"require-dev": {
"amphp/artax": "^3.0",
"macfja/phar-builder": "dev-handle-dot-notation-relative-paths",
"phpmailer/phpmailer": "^6.0",
"phpunit/phpunit": "^7.1.4",
"slevomat/coding-standard": "^4.5",
"squizlabs/php_codesniffer": "^3.2",
"swiftmailer/swiftmailer": "^6.0"
},
"autoload": {
"psr-4": {
"PeeHaa\\MailGrab\\": "src/"
},
"files": ["src/functions.php"]
},
"autoload-dev": {
"psr-4": {"PeeHaa\\MailGrabTest\\": "tests/"}
},
"extra": {
"phar-builder": {
"compression": "None",
"name": "mailgrab.phar",
"include": ["public", "info"],
"output-dir": "./build",
"entry-point": "./bin/mailgrab",
"skip-shebang": false,
"events": {
"command.package.start": [
"mkdir info",
"git describe --tags > info/build.version"
],
"command.package.end": [
"rm -rf info",
"chmod +x build/mailgrab.phar"
]
}
}
},
"config": {
"sort-packages": true
}
}