-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
92 lines (92 loc) · 2.56 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "lendable/message",
"description": "Fundamental building blocks for message based systems",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Lendable Ltd",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ramsey/uuid": "^4.7"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.43.0",
"ergebnis/phpstan-rules": "^2.5.0",
"lendable/composer-license-checker": "^1.2.1",
"lendable/phpunit-extensions": "^0.3",
"php-cs-fixer/shim": "^3.60.0",
"phpstan/phpstan": "^1.11.8",
"phpstan/phpstan-deprecation-rules": "^1.2.0",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpstan/phpstan-strict-rules": "^1.6.0",
"phpunit/phpunit": "^11.2.8",
"rector/rector": "^1.2.2"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Lendable\\Message\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Fixtures\\Lendable\\Message\\": "tests/fixtures/",
"Tests\\Unit\\Lendable\\Message\\": "tests/unit/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"platform": {
"php": "8.2"
},
"sort-packages": true
},
"scripts": {
"ci": [
"@composer audit",
"@static-analysis",
"@tests:unit",
"@code-style:check"
],
"code-style:check": [
"PHP_CS_FIXER_FUTURE_MODE=1 php-cs-fixer fix --dry-run --diff --ansi"
],
"code-style:fix": [
"PHP_CS_FIXER_FUTURE_MODE=1 php-cs-fixer fix --diff --ansi"
],
"licenses:check": [
"composer-license-checker"
],
"phpstan": [
"phpstan analyse --memory-limit=-1 src/ tests/ rector.php --ansi --no-progress -v"
],
"phpunit:unit": [
"phpunit --colors=always --testsuite=unit"
],
"rector:check": [
"rector --dry-run --ansi --no-progress-bar"
],
"rector:fix": [
"rector --ansi --no-progress-bar"
],
"security:check": [
"@composer audit --no-dev"
],
"static-analysis": [
"@composer validate",
"@composer normalize --dry-run",
"@licenses:check",
"@phpstan",
"@rector:check"
],
"tests:unit": [
"@phpunit:unit"
]
}
}