-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 1.78 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
{
"name": "phauthenic/email-service",
"type": "project",
"license": "GPL",
"authors": [
{
"name": "Florian Krämer",
"homepage": "https://florian-kraemer.net"
}
],
"require": {
"ext-json": "*",
"league/container": "^3.3",
"league/tactician": "^1.0",
"league/tactician-container": "^2.0",
"moon-php/http-middleware": "^3.0",
"narrowspark/http-emitter": "^0.8.0",
"phauthentic/correlation-id": "^1.0",
"phauthentic/email": "dev-develop",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0",
"swiftmailer/swiftmailer": "^6.2",
"tuupola/http-factory": "^1.0"
},
"require-dev": {
"instituteweb/composer-scripts": "^1.1"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests"
}
},
"repositories": [
{
"type": "git",
"url": "[email protected]:phauthentic/email.git"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"scripts": {
"tests": [
"\\InstituteWeb\\ComposerScripts\\ImprovedScriptExecution::apply",
"./bin/phpunit"
],
"cscheck": [
"\\InstituteWeb\\ComposerScripts\\ImprovedScriptExecution::apply",
"./bin/phpcs ./src ./tests --standard=./phpcs.xml -s"
],
"csfix": [
"\\InstituteWeb\\ComposerScripts\\ImprovedScriptExecution::apply",
"./bin/phpcbf ./src ./tests --standard=./phpcs.xml"
],
"analyze": [
"\\InstituteWeb\\ComposerScripts\\ImprovedScriptExecution::apply",
"./bin/phpstan analyse -l 5 -c phpstan.neon ./src\\"
],
"phive": [
"php ./config/composer_phive_script.php"
],
"serve": [
"php -S localhost:8081 -t .\\public"
]
}
}