-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
96 lines (96 loc) · 2.7 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
93
94
95
96
{
"name": "lendable/composer-license-checker",
"description": "Composer license checker",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Lendable Ltd",
"email": "contact@lendable.co.uk"
}
],
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"composer-runtime-api": "^2.2",
"symfony/console": "^5.4 || ^6.0 || ^7.0",
"symfony/process": "^5.4.46 || ^6.4.14 || ^7.1.7"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.43.0",
"lendable/phpunit-extensions": "^0.3",
"php-cs-fixer/shim": "^3.61.1",
"phpstan/phpstan": "^1.11.9",
"phpstan/phpstan-deprecation-rules": "^1.2.0",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpstan/phpstan-strict-rules": "^1.6.0",
"phpunit/phpunit": "^11.3.0",
"rector/rector": "^1.2.2",
"symfony/filesystem": "^6.2"
},
"autoload": {
"psr-4": {
"Lendable\\ComposerLicenseChecker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\E2E\\Lendable\\ComposerLicenseChecker\\": "tests/e2e/",
"Tests\\Support\\Lendable\\ComposerLicenseChecker\\": "tests/support/",
"Tests\\Unit\\Lendable\\ComposerLicenseChecker\\": "tests/unit/"
}
},
"bin": [
"bin/composer-license-checker"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"platform": {
"php": "8.2.13"
},
"sort-packages": true
},
"scripts": {
"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"
],
"license:check": [
"composer-license-checker"
],
"phpstan": [
"phpstan --memory-limit=-1 --ansi"
],
"phpunit:e2e": [
"phpunit --colors --testsuite e2e"
],
"phpunit:unit": [
"phpunit --colors --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",
"@license:check",
"@code-style:check",
"@phpstan",
"@rector:check"
],
"tests:e2e": [
"@phpunit:e2e"
],
"tests:unit": [
"@phpunit:unit"
]
}
}