-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
118 lines (118 loc) · 3.82 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "ghostwriter/container",
"description": "Provides an extensible Dependency Injection Service Container for Automated Object Composition, Interception, and Lifetime Management.",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"ghostwriter",
"container"
],
"authors": [
{
"name": "Nathanael Esayeas",
"email": "nathanael.esayeas@protonmail.com",
"homepage": "https://github.com/ghostwriter",
"role": "Developer"
}
],
"homepage": "https://github.com/ghostwriter/container",
"support": {
"issues": "https://github.com/ghostwriter/container/issues",
"source": "https://github.com/ghostwriter/container",
"rss": "https://github.com/ghostwriter/container/releases.atom",
"security": "https://github.com/ghostwriter/container/security/advisories/new"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/ghostwriter"
}
],
"_comment": [
"#BlackLivesMatter",
"#FreePalestine",
"#StandWithUkraine"
],
"require": {
"php": ">=8.4"
},
"require-dev": {
"ghostwriter/coding-standard": "dev-main"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Ghostwriter\\Container\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Unit\\": "tests/unit/"
},
"files": [
"tests/fixture/functions.php",
"tests/bootstrap.php"
],
"exclude-from-classmap": [
"tests/fixture/"
]
},
"config": {
"allow-plugins": {
"ghostwriter/coding-standard": true
},
"classmap-authoritative": false,
"discard-changes": true,
"optimize-autoloader": true,
"platform": {
"php": "8.4.999"
},
"platform-check": true,
"preferred-install": "dist",
"prepend-autoloader": true,
"process-timeout": 5000,
"sort-packages": true,
"use-parent-dir": false
},
"scripts": {
"bin_composer": "vendor/ghostwriter/coding-standard/tools/composer",
"bin_ecs": "ecs check --clear-cache --no-interaction",
"bin_infection": "vendor/ghostwriter/coding-standard/tools/infection --ansi --min-covered-msi=0 --min-msi=0 --show-mutations --threads=max",
"bin_normalize": "vendor/ghostwriter/coding-standard/tools/composer-normalize",
"bin_phive": "vendor/ghostwriter/coding-standard/tools/phive",
"bin_phpunit": "vendor/ghostwriter/coding-standard/tools/phpunit --do-not-cache-result --colors=always",
"bin_psalm": "vendor/ghostwriter/coding-standard/tools/psalm --no-cache",
"bin_rector": "rector process --clear-cache --no-ansi",
"cache:clear": "rm -rf ./.cache/*",
"check": [
"@cache:clear",
"@bin_composer validate",
"@composer-normalize",
"@ecs",
"@test"
],
"composer-normalize": "@bin_normalize --no-cache --diff --no-check-lock --no-scripts --no-plugins",
"ecs": "@bin_ecs --fix",
"git:submodule:update": "git submodule update --depth=1 --init --recursive --recommend-shallow --remote",
"infection": [
"@xdebug",
"@bin_infection"
],
"phpunit": [
"@xdebug",
"@bin_phpunit"
],
"phpunit:migrate": [
"@xdebug",
"@bin_phpunit --migrate-configuration"
],
"rector": "@bin_rector",
"rector:dry-run": "@rector --dry-run",
"test": [
"@phpunit",
"@infection"
],
"xdebug": "@putenv XDEBUG_MODE=coverage"
}
}