@guilz-dev/sdlc-gh 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (176) hide show
  1. package/.github/CODEOWNERS +5 -0
  2. package/.github/ISSUE_TEMPLATE/bug_report.yml +68 -0
  3. package/.github/ISSUE_TEMPLATE/config.yml +1 -0
  4. package/.github/ISSUE_TEMPLATE/feature_request.yml +39 -0
  5. package/.github/ISSUE_TEMPLATE/support.yml +56 -0
  6. package/.github/ISSUE_TEMPLATE/task.yml +89 -0
  7. package/.github/agents/implementer.agent.md +17 -0
  8. package/.github/agents/reviewer.agent.md +18 -0
  9. package/.github/agents/triager.agent.md +13 -0
  10. package/.github/aw/actions-lock.json +9 -0
  11. package/.github/copilot-instructions.md +35 -0
  12. package/.github/hooks/hooks.json +12 -0
  13. package/.github/instructions/core.instructions.md +11 -0
  14. package/.github/instructions/profiles/go.instructions.md +10 -0
  15. package/.github/instructions/profiles/php.instructions.md +11 -0
  16. package/.github/instructions/profiles/python.instructions.md +11 -0
  17. package/.github/instructions/profiles/ruby.instructions.md +11 -0
  18. package/.github/instructions/profiles/typescript.instructions.md +11 -0
  19. package/.github/labels.yml +55 -0
  20. package/.github/pull_request_template.md +33 -0
  21. package/.github/ruleset.example.json +33 -0
  22. package/.github/ruleset.harness-eval.example.json +29 -0
  23. package/.github/skills/quality-loop/SKILL.md +23 -0
  24. package/.github/workflows/agent-retry-orchestrator.yml +161 -0
  25. package/.github/workflows/copilot-setup-steps.yml +64 -0
  26. package/.github/workflows/eval-ci.yml +169 -0
  27. package/.github/workflows/eval-drift.yml +75 -0
  28. package/.github/workflows/gh-aw-dogfood-ci.yml +73 -0
  29. package/.github/workflows/harness-ci.yml +244 -0
  30. package/.github/workflows/harness-sync.yml +28 -0
  31. package/.github/workflows/l1-readiness-check.yml +45 -0
  32. package/.github/workflows/labels-sync.yml +24 -0
  33. package/.github/workflows/nightly-harness-review.lock.yml +1643 -0
  34. package/.github/workflows/nightly-harness-review.md +87 -0
  35. package/.github/workflows/nightly-harness-review.yml +63 -0
  36. package/.github/workflows/npm-publish.yml +49 -0
  37. package/.github/workflows/pr-context-comment.yml +138 -0
  38. package/.github/workflows/product-ci-go.yml +33 -0
  39. package/.github/workflows/product-ci-php.yml +39 -0
  40. package/.github/workflows/product-ci-python.yml +34 -0
  41. package/.github/workflows/product-ci-ruby.yml +35 -0
  42. package/.github/workflows/product-ci-ts.yml +37 -0
  43. package/.github/workflows/task-issue-label-sync.yml +50 -0
  44. package/.github/workflows/weekly-redteam.lock.yml +1571 -0
  45. package/.github/workflows/weekly-redteam.md +76 -0
  46. package/.github/zizmor.yml +11 -0
  47. package/AGENTS.md +54 -0
  48. package/LICENSE +21 -0
  49. package/README.md +366 -0
  50. package/config/stacks.json +55 -0
  51. package/docs/adoption.md +126 -0
  52. package/docs/arch.md +535 -0
  53. package/docs/auth-boundaries.md +16 -0
  54. package/docs/coding-agent-l1.md +152 -0
  55. package/docs/exceptions/README.md +25 -0
  56. package/docs/exceptions/TEMPLATE.md +8 -0
  57. package/docs/failure-taxonomy.md +23 -0
  58. package/docs/gh-aw-dogfood.md +109 -0
  59. package/docs/kpi-baseline.md +9 -0
  60. package/docs/nightly-harness-review.md +94 -0
  61. package/docs/operations.md +108 -0
  62. package/docs/publishing.md +79 -0
  63. package/docs/revert-playbook.md +44 -0
  64. package/docs/shared-config.md +30 -0
  65. package/docs/telemetry-artifacts.md +78 -0
  66. package/docs/telemetry-schema.md +60 -0
  67. package/evals/.score-baseline.json +6 -0
  68. package/evals/e2e-bench/README.md +28 -0
  69. package/evals/e2e-bench/manifest.json +16 -0
  70. package/evals/e2e-bench/tasks/e2e-001.yml +10 -0
  71. package/evals/e2e-bench/tasks/e2e-002.yml +11 -0
  72. package/evals/e2e-bench/tasks/e2e-003.yml +10 -0
  73. package/evals/e2e-bench/tasks/e2e-004.yml +14 -0
  74. package/evals/e2e-bench/tasks/e2e-005.yml +11 -0
  75. package/evals/e2e-bench/tasks/e2e-006.yml +10 -0
  76. package/evals/e2e-bench/tasks/e2e-007.yml +10 -0
  77. package/evals/e2e-bench/tasks/e2e-008.yml +10 -0
  78. package/evals/e2e-bench/tasks/e2e-009.yml +10 -0
  79. package/evals/trajectories/rubric.md +12 -0
  80. package/evals/trajectories/test_harness_conventions.py +271 -0
  81. package/infra/README.md +49 -0
  82. package/infra/langfuse/docker-compose.yml +25 -0
  83. package/infra/otel/collector-config.yml +24 -0
  84. package/infra/samples/gh-aw-dogfood-report.json +44 -0
  85. package/infra/samples/harness-review-routing-plan.json +19 -0
  86. package/infra/samples/harness-review-summary.json +61 -0
  87. package/infra/samples/telemetry-artifact.json +29 -0
  88. package/infra/samples/telemetry-payload.json +19 -0
  89. package/package.json +85 -0
  90. package/prompts/triager-classify.prompt.yml +10 -0
  91. package/sample/go/add.go +5 -0
  92. package/sample/go/add_test.go +9 -0
  93. package/sample/go/go.mod +3 -0
  94. package/sample/php/composer.json +26 -0
  95. package/sample/php/composer.lock +1881 -0
  96. package/sample/php/phpunit.xml +8 -0
  97. package/sample/php/src/Add.php +13 -0
  98. package/sample/php/tests/AddTest.php +16 -0
  99. package/sample/python/requirements-dev.txt +2 -0
  100. package/sample/python/src/__init__.py +0 -0
  101. package/sample/python/src/greet.py +3 -0
  102. package/sample/python/tests/conftest.py +4 -0
  103. package/sample/python/tests/test_greet.py +5 -0
  104. package/sample/ruby/.rubocop.yml +10 -0
  105. package/sample/ruby/Gemfile +6 -0
  106. package/sample/ruby/Gemfile.lock +58 -0
  107. package/sample/ruby/lib/add.rb +9 -0
  108. package/sample/ruby/spec/add_spec.rb +11 -0
  109. package/sample/ts/biome.json +6 -0
  110. package/sample/ts/package-lock.json +1763 -0
  111. package/sample/ts/package.json +15 -0
  112. package/sample/ts/src/add.ts +3 -0
  113. package/sample/ts/tests/add.test.ts +8 -0
  114. package/sample/ts/tsconfig.json +12 -0
  115. package/scripts/aggregate-harness-review.mjs +48 -0
  116. package/scripts/bootstrap-harness.sh +411 -0
  117. package/scripts/check-diff-size.mjs +46 -0
  118. package/scripts/check-e2e-manifest.mjs +35 -0
  119. package/scripts/check-eval-score-drift.mjs +31 -0
  120. package/scripts/check-gh-aw-dogfood-scope.mjs +51 -0
  121. package/scripts/check-issue-spec.mjs +215 -0
  122. package/scripts/check-l1-readiness.mjs +82 -0
  123. package/scripts/check-open-pr-limit.mjs +34 -0
  124. package/scripts/doctor.mjs +177 -0
  125. package/scripts/emit-gh-aw-dogfood-report.mjs +112 -0
  126. package/scripts/emit-telemetry-artifact.mjs +99 -0
  127. package/scripts/fetch-telemetry-artifacts.mjs +176 -0
  128. package/scripts/harness-drift-report.mjs +99 -0
  129. package/scripts/lib/bootstrap-copy.mjs +123 -0
  130. package/scripts/lib/ccsd-contract.mjs +212 -0
  131. package/scripts/lib/diff-size.mjs +103 -0
  132. package/scripts/lib/doctor-local.mjs +179 -0
  133. package/scripts/lib/e2e-manifest.mjs +76 -0
  134. package/scripts/lib/gh-aw-dogfood.mjs +293 -0
  135. package/scripts/lib/github-config.mjs +94 -0
  136. package/scripts/lib/harness-ci-fragments.mjs +98 -0
  137. package/scripts/lib/harness-review-routing.mjs +244 -0
  138. package/scripts/lib/harness-review.mjs +388 -0
  139. package/scripts/lib/issue-form-label-sync.mjs +56 -0
  140. package/scripts/lib/l1-readiness.mjs +258 -0
  141. package/scripts/lib/merge-harness-package.mjs +36 -0
  142. package/scripts/lib/npm-package.mjs +129 -0
  143. package/scripts/lib/setup-wizard.mjs +224 -0
  144. package/scripts/lib/stacks.mjs +138 -0
  145. package/scripts/lib/telemetry-artifact.mjs +253 -0
  146. package/scripts/lib/template-root.mjs +39 -0
  147. package/scripts/merge-harness-package.mjs +14 -0
  148. package/scripts/route-harness-review.mjs +168 -0
  149. package/scripts/run-e2e-bench.mjs +216 -0
  150. package/scripts/sdlc-gh-cli.mjs +91 -0
  151. package/scripts/select-eval-jobs.mjs +41 -0
  152. package/scripts/setup-github.mjs +242 -0
  153. package/scripts/setup-github.sh +4 -0
  154. package/scripts/setup-wizard.mjs +426 -0
  155. package/scripts/test-bootstrap-guidance-scenarios.mjs +94 -0
  156. package/scripts/test-diff-size-scenarios.mjs +88 -0
  157. package/scripts/test-doctor-scenarios.mjs +70 -0
  158. package/scripts/test-e2e-manifest-scenarios.mjs +65 -0
  159. package/scripts/test-gh-aw-dogfood-scenarios.mjs +74 -0
  160. package/scripts/test-harness-review-routing-scenarios.mjs +130 -0
  161. package/scripts/test-harness-review-scenarios.mjs +92 -0
  162. package/scripts/test-hooks-scenarios.mjs +44 -0
  163. package/scripts/test-issue-form-label-sync-scenarios.mjs +48 -0
  164. package/scripts/test-issue-spec-scenarios.mjs +258 -0
  165. package/scripts/test-l1-readiness-scenarios.mjs +204 -0
  166. package/scripts/test-merge-harness-package-scenarios.mjs +53 -0
  167. package/scripts/test-npm-package-scenarios.mjs +31 -0
  168. package/scripts/test-sdlc-gh-cli-scenarios.mjs +54 -0
  169. package/scripts/test-setup-github-scenarios.mjs +103 -0
  170. package/scripts/test-setup-wizard-scenarios.mjs +114 -0
  171. package/scripts/test-telemetry-artifact-scenarios.mjs +69 -0
  172. package/scripts/trim-harness-ci.mjs +18 -0
  173. package/scripts/validate-gh-aw-compile.mjs +64 -0
  174. package/scripts/validate-harness.mjs +199 -0
  175. package/scripts/validate-telemetry.mjs +21 -0
  176. package/scripts/verify-bootstrap-stacks.sh +192 -0
@@ -0,0 +1,1881 @@
1
+ {
2
+ "_readme": [
3
+ "This file locks the dependencies of your project to a known state",
4
+ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5
+ "This file is @generated automatically"
6
+ ],
7
+ "content-hash": "05ec936ad6d591b2fc0f91507419d1b9",
8
+ "packages": [],
9
+ "packages-dev": [
10
+ {
11
+ "name": "myclabs/deep-copy",
12
+ "version": "1.13.4",
13
+ "source": {
14
+ "type": "git",
15
+ "url": "https://github.com/myclabs/DeepCopy.git",
16
+ "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a"
17
+ },
18
+ "dist": {
19
+ "type": "zip",
20
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a",
21
+ "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a",
22
+ "shasum": ""
23
+ },
24
+ "require": {
25
+ "php": "^7.1 || ^8.0"
26
+ },
27
+ "conflict": {
28
+ "doctrine/collections": "<1.6.8",
29
+ "doctrine/common": "<2.13.3 || >=3 <3.2.2"
30
+ },
31
+ "require-dev": {
32
+ "doctrine/collections": "^1.6.8",
33
+ "doctrine/common": "^2.13.3 || ^3.2.2",
34
+ "phpspec/prophecy": "^1.10",
35
+ "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
36
+ },
37
+ "type": "library",
38
+ "autoload": {
39
+ "files": [
40
+ "src/DeepCopy/deep_copy.php"
41
+ ],
42
+ "psr-4": {
43
+ "DeepCopy\\": "src/DeepCopy/"
44
+ }
45
+ },
46
+ "notification-url": "https://packagist.org/downloads/",
47
+ "license": [
48
+ "MIT"
49
+ ],
50
+ "description": "Create deep copies (clones) of your objects",
51
+ "keywords": [
52
+ "clone",
53
+ "copy",
54
+ "duplicate",
55
+ "object",
56
+ "object graph"
57
+ ],
58
+ "support": {
59
+ "issues": "https://github.com/myclabs/DeepCopy/issues",
60
+ "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4"
61
+ },
62
+ "funding": [
63
+ {
64
+ "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
65
+ "type": "tidelift"
66
+ }
67
+ ],
68
+ "time": "2025-08-01T08:46:24+00:00"
69
+ },
70
+ {
71
+ "name": "nikic/php-parser",
72
+ "version": "v5.7.0",
73
+ "source": {
74
+ "type": "git",
75
+ "url": "https://github.com/nikic/PHP-Parser.git",
76
+ "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
77
+ },
78
+ "dist": {
79
+ "type": "zip",
80
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
81
+ "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
82
+ "shasum": ""
83
+ },
84
+ "require": {
85
+ "ext-ctype": "*",
86
+ "ext-json": "*",
87
+ "ext-tokenizer": "*",
88
+ "php": ">=7.4"
89
+ },
90
+ "require-dev": {
91
+ "ircmaxell/php-yacc": "^0.0.7",
92
+ "phpunit/phpunit": "^9.0"
93
+ },
94
+ "bin": [
95
+ "bin/php-parse"
96
+ ],
97
+ "type": "library",
98
+ "extra": {
99
+ "branch-alias": {
100
+ "dev-master": "5.x-dev"
101
+ }
102
+ },
103
+ "autoload": {
104
+ "psr-4": {
105
+ "PhpParser\\": "lib/PhpParser"
106
+ }
107
+ },
108
+ "notification-url": "https://packagist.org/downloads/",
109
+ "license": [
110
+ "BSD-3-Clause"
111
+ ],
112
+ "authors": [
113
+ {
114
+ "name": "Nikita Popov"
115
+ }
116
+ ],
117
+ "description": "A PHP parser written in PHP",
118
+ "keywords": [
119
+ "parser",
120
+ "php"
121
+ ],
122
+ "support": {
123
+ "issues": "https://github.com/nikic/PHP-Parser/issues",
124
+ "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
125
+ },
126
+ "time": "2025-12-06T11:56:16+00:00"
127
+ },
128
+ {
129
+ "name": "phar-io/manifest",
130
+ "version": "2.0.4",
131
+ "source": {
132
+ "type": "git",
133
+ "url": "https://github.com/phar-io/manifest.git",
134
+ "reference": "54750ef60c58e43759730615a392c31c80e23176"
135
+ },
136
+ "dist": {
137
+ "type": "zip",
138
+ "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
139
+ "reference": "54750ef60c58e43759730615a392c31c80e23176",
140
+ "shasum": ""
141
+ },
142
+ "require": {
143
+ "ext-dom": "*",
144
+ "ext-libxml": "*",
145
+ "ext-phar": "*",
146
+ "ext-xmlwriter": "*",
147
+ "phar-io/version": "^3.0.1",
148
+ "php": "^7.2 || ^8.0"
149
+ },
150
+ "type": "library",
151
+ "extra": {
152
+ "branch-alias": {
153
+ "dev-master": "2.0.x-dev"
154
+ }
155
+ },
156
+ "autoload": {
157
+ "classmap": [
158
+ "src/"
159
+ ]
160
+ },
161
+ "notification-url": "https://packagist.org/downloads/",
162
+ "license": [
163
+ "BSD-3-Clause"
164
+ ],
165
+ "authors": [
166
+ {
167
+ "name": "Arne Blankerts",
168
+ "email": "arne@blankerts.de",
169
+ "role": "Developer"
170
+ },
171
+ {
172
+ "name": "Sebastian Heuer",
173
+ "email": "sebastian@phpeople.de",
174
+ "role": "Developer"
175
+ },
176
+ {
177
+ "name": "Sebastian Bergmann",
178
+ "email": "sebastian@phpunit.de",
179
+ "role": "Developer"
180
+ }
181
+ ],
182
+ "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
183
+ "support": {
184
+ "issues": "https://github.com/phar-io/manifest/issues",
185
+ "source": "https://github.com/phar-io/manifest/tree/2.0.4"
186
+ },
187
+ "funding": [
188
+ {
189
+ "url": "https://github.com/theseer",
190
+ "type": "github"
191
+ }
192
+ ],
193
+ "time": "2024-03-03T12:33:53+00:00"
194
+ },
195
+ {
196
+ "name": "phar-io/version",
197
+ "version": "3.2.1",
198
+ "source": {
199
+ "type": "git",
200
+ "url": "https://github.com/phar-io/version.git",
201
+ "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
202
+ },
203
+ "dist": {
204
+ "type": "zip",
205
+ "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
206
+ "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
207
+ "shasum": ""
208
+ },
209
+ "require": {
210
+ "php": "^7.2 || ^8.0"
211
+ },
212
+ "type": "library",
213
+ "autoload": {
214
+ "classmap": [
215
+ "src/"
216
+ ]
217
+ },
218
+ "notification-url": "https://packagist.org/downloads/",
219
+ "license": [
220
+ "BSD-3-Clause"
221
+ ],
222
+ "authors": [
223
+ {
224
+ "name": "Arne Blankerts",
225
+ "email": "arne@blankerts.de",
226
+ "role": "Developer"
227
+ },
228
+ {
229
+ "name": "Sebastian Heuer",
230
+ "email": "sebastian@phpeople.de",
231
+ "role": "Developer"
232
+ },
233
+ {
234
+ "name": "Sebastian Bergmann",
235
+ "email": "sebastian@phpunit.de",
236
+ "role": "Developer"
237
+ }
238
+ ],
239
+ "description": "Library for handling version information and constraints",
240
+ "support": {
241
+ "issues": "https://github.com/phar-io/version/issues",
242
+ "source": "https://github.com/phar-io/version/tree/3.2.1"
243
+ },
244
+ "time": "2022-02-21T01:04:05+00:00"
245
+ },
246
+ {
247
+ "name": "phpunit/php-code-coverage",
248
+ "version": "11.0.12",
249
+ "source": {
250
+ "type": "git",
251
+ "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
252
+ "reference": "2c1ed04922802c15e1de5d7447b4856de949cf56"
253
+ },
254
+ "dist": {
255
+ "type": "zip",
256
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2c1ed04922802c15e1de5d7447b4856de949cf56",
257
+ "reference": "2c1ed04922802c15e1de5d7447b4856de949cf56",
258
+ "shasum": ""
259
+ },
260
+ "require": {
261
+ "ext-dom": "*",
262
+ "ext-libxml": "*",
263
+ "ext-xmlwriter": "*",
264
+ "nikic/php-parser": "^5.7.0",
265
+ "php": ">=8.2",
266
+ "phpunit/php-file-iterator": "^5.1.0",
267
+ "phpunit/php-text-template": "^4.0.1",
268
+ "sebastian/code-unit-reverse-lookup": "^4.0.1",
269
+ "sebastian/complexity": "^4.0.1",
270
+ "sebastian/environment": "^7.2.1",
271
+ "sebastian/lines-of-code": "^3.0.1",
272
+ "sebastian/version": "^5.0.2",
273
+ "theseer/tokenizer": "^1.3.1"
274
+ },
275
+ "require-dev": {
276
+ "phpunit/phpunit": "^11.5.46"
277
+ },
278
+ "suggest": {
279
+ "ext-pcov": "PHP extension that provides line coverage",
280
+ "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
281
+ },
282
+ "type": "library",
283
+ "extra": {
284
+ "branch-alias": {
285
+ "dev-main": "11.0.x-dev"
286
+ }
287
+ },
288
+ "autoload": {
289
+ "classmap": [
290
+ "src/"
291
+ ]
292
+ },
293
+ "notification-url": "https://packagist.org/downloads/",
294
+ "license": [
295
+ "BSD-3-Clause"
296
+ ],
297
+ "authors": [
298
+ {
299
+ "name": "Sebastian Bergmann",
300
+ "email": "sebastian@phpunit.de",
301
+ "role": "lead"
302
+ }
303
+ ],
304
+ "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
305
+ "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
306
+ "keywords": [
307
+ "coverage",
308
+ "testing",
309
+ "xunit"
310
+ ],
311
+ "support": {
312
+ "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
313
+ "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
314
+ "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.12"
315
+ },
316
+ "funding": [
317
+ {
318
+ "url": "https://github.com/sebastianbergmann",
319
+ "type": "github"
320
+ },
321
+ {
322
+ "url": "https://liberapay.com/sebastianbergmann",
323
+ "type": "liberapay"
324
+ },
325
+ {
326
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
327
+ "type": "thanks_dev"
328
+ },
329
+ {
330
+ "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
331
+ "type": "tidelift"
332
+ }
333
+ ],
334
+ "time": "2025-12-24T07:01:01+00:00"
335
+ },
336
+ {
337
+ "name": "phpunit/php-file-iterator",
338
+ "version": "5.1.1",
339
+ "source": {
340
+ "type": "git",
341
+ "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
342
+ "reference": "2f3a64888c814fc235386b7387dd5b5ed92ad903"
343
+ },
344
+ "dist": {
345
+ "type": "zip",
346
+ "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/2f3a64888c814fc235386b7387dd5b5ed92ad903",
347
+ "reference": "2f3a64888c814fc235386b7387dd5b5ed92ad903",
348
+ "shasum": ""
349
+ },
350
+ "require": {
351
+ "php": ">=8.2"
352
+ },
353
+ "require-dev": {
354
+ "phpunit/phpunit": "^11.3"
355
+ },
356
+ "type": "library",
357
+ "extra": {
358
+ "branch-alias": {
359
+ "dev-main": "5.1-dev"
360
+ }
361
+ },
362
+ "autoload": {
363
+ "classmap": [
364
+ "src/"
365
+ ]
366
+ },
367
+ "notification-url": "https://packagist.org/downloads/",
368
+ "license": [
369
+ "BSD-3-Clause"
370
+ ],
371
+ "authors": [
372
+ {
373
+ "name": "Sebastian Bergmann",
374
+ "email": "sebastian@phpunit.de",
375
+ "role": "lead"
376
+ }
377
+ ],
378
+ "description": "FilterIterator implementation that filters files based on a list of suffixes.",
379
+ "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
380
+ "keywords": [
381
+ "filesystem",
382
+ "iterator"
383
+ ],
384
+ "support": {
385
+ "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
386
+ "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
387
+ "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.1"
388
+ },
389
+ "funding": [
390
+ {
391
+ "url": "https://github.com/sebastianbergmann",
392
+ "type": "github"
393
+ },
394
+ {
395
+ "url": "https://liberapay.com/sebastianbergmann",
396
+ "type": "liberapay"
397
+ },
398
+ {
399
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
400
+ "type": "thanks_dev"
401
+ },
402
+ {
403
+ "url": "https://tidelift.com/funding/github/packagist/phpunit/php-file-iterator",
404
+ "type": "tidelift"
405
+ }
406
+ ],
407
+ "time": "2026-02-02T13:52:54+00:00"
408
+ },
409
+ {
410
+ "name": "phpunit/php-invoker",
411
+ "version": "5.0.1",
412
+ "source": {
413
+ "type": "git",
414
+ "url": "https://github.com/sebastianbergmann/php-invoker.git",
415
+ "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
416
+ },
417
+ "dist": {
418
+ "type": "zip",
419
+ "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
420
+ "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
421
+ "shasum": ""
422
+ },
423
+ "require": {
424
+ "php": ">=8.2"
425
+ },
426
+ "require-dev": {
427
+ "ext-pcntl": "*",
428
+ "phpunit/phpunit": "^11.0"
429
+ },
430
+ "suggest": {
431
+ "ext-pcntl": "*"
432
+ },
433
+ "type": "library",
434
+ "extra": {
435
+ "branch-alias": {
436
+ "dev-main": "5.0-dev"
437
+ }
438
+ },
439
+ "autoload": {
440
+ "classmap": [
441
+ "src/"
442
+ ]
443
+ },
444
+ "notification-url": "https://packagist.org/downloads/",
445
+ "license": [
446
+ "BSD-3-Clause"
447
+ ],
448
+ "authors": [
449
+ {
450
+ "name": "Sebastian Bergmann",
451
+ "email": "sebastian@phpunit.de",
452
+ "role": "lead"
453
+ }
454
+ ],
455
+ "description": "Invoke callables with a timeout",
456
+ "homepage": "https://github.com/sebastianbergmann/php-invoker/",
457
+ "keywords": [
458
+ "process"
459
+ ],
460
+ "support": {
461
+ "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
462
+ "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
463
+ "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
464
+ },
465
+ "funding": [
466
+ {
467
+ "url": "https://github.com/sebastianbergmann",
468
+ "type": "github"
469
+ }
470
+ ],
471
+ "time": "2024-07-03T05:07:44+00:00"
472
+ },
473
+ {
474
+ "name": "phpunit/php-text-template",
475
+ "version": "4.0.1",
476
+ "source": {
477
+ "type": "git",
478
+ "url": "https://github.com/sebastianbergmann/php-text-template.git",
479
+ "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
480
+ },
481
+ "dist": {
482
+ "type": "zip",
483
+ "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
484
+ "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
485
+ "shasum": ""
486
+ },
487
+ "require": {
488
+ "php": ">=8.2"
489
+ },
490
+ "require-dev": {
491
+ "phpunit/phpunit": "^11.0"
492
+ },
493
+ "type": "library",
494
+ "extra": {
495
+ "branch-alias": {
496
+ "dev-main": "4.0-dev"
497
+ }
498
+ },
499
+ "autoload": {
500
+ "classmap": [
501
+ "src/"
502
+ ]
503
+ },
504
+ "notification-url": "https://packagist.org/downloads/",
505
+ "license": [
506
+ "BSD-3-Clause"
507
+ ],
508
+ "authors": [
509
+ {
510
+ "name": "Sebastian Bergmann",
511
+ "email": "sebastian@phpunit.de",
512
+ "role": "lead"
513
+ }
514
+ ],
515
+ "description": "Simple template engine.",
516
+ "homepage": "https://github.com/sebastianbergmann/php-text-template/",
517
+ "keywords": [
518
+ "template"
519
+ ],
520
+ "support": {
521
+ "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
522
+ "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
523
+ "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
524
+ },
525
+ "funding": [
526
+ {
527
+ "url": "https://github.com/sebastianbergmann",
528
+ "type": "github"
529
+ }
530
+ ],
531
+ "time": "2024-07-03T05:08:43+00:00"
532
+ },
533
+ {
534
+ "name": "phpunit/php-timer",
535
+ "version": "7.0.1",
536
+ "source": {
537
+ "type": "git",
538
+ "url": "https://github.com/sebastianbergmann/php-timer.git",
539
+ "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
540
+ },
541
+ "dist": {
542
+ "type": "zip",
543
+ "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
544
+ "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
545
+ "shasum": ""
546
+ },
547
+ "require": {
548
+ "php": ">=8.2"
549
+ },
550
+ "require-dev": {
551
+ "phpunit/phpunit": "^11.0"
552
+ },
553
+ "type": "library",
554
+ "extra": {
555
+ "branch-alias": {
556
+ "dev-main": "7.0-dev"
557
+ }
558
+ },
559
+ "autoload": {
560
+ "classmap": [
561
+ "src/"
562
+ ]
563
+ },
564
+ "notification-url": "https://packagist.org/downloads/",
565
+ "license": [
566
+ "BSD-3-Clause"
567
+ ],
568
+ "authors": [
569
+ {
570
+ "name": "Sebastian Bergmann",
571
+ "email": "sebastian@phpunit.de",
572
+ "role": "lead"
573
+ }
574
+ ],
575
+ "description": "Utility class for timing",
576
+ "homepage": "https://github.com/sebastianbergmann/php-timer/",
577
+ "keywords": [
578
+ "timer"
579
+ ],
580
+ "support": {
581
+ "issues": "https://github.com/sebastianbergmann/php-timer/issues",
582
+ "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
583
+ "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
584
+ },
585
+ "funding": [
586
+ {
587
+ "url": "https://github.com/sebastianbergmann",
588
+ "type": "github"
589
+ }
590
+ ],
591
+ "time": "2024-07-03T05:09:35+00:00"
592
+ },
593
+ {
594
+ "name": "phpunit/phpunit",
595
+ "version": "11.5.55",
596
+ "source": {
597
+ "type": "git",
598
+ "url": "https://github.com/sebastianbergmann/phpunit.git",
599
+ "reference": "adc7262fccc12de2b30f12a8aa0b33775d814f00"
600
+ },
601
+ "dist": {
602
+ "type": "zip",
603
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/adc7262fccc12de2b30f12a8aa0b33775d814f00",
604
+ "reference": "adc7262fccc12de2b30f12a8aa0b33775d814f00",
605
+ "shasum": ""
606
+ },
607
+ "require": {
608
+ "ext-dom": "*",
609
+ "ext-json": "*",
610
+ "ext-libxml": "*",
611
+ "ext-mbstring": "*",
612
+ "ext-xml": "*",
613
+ "ext-xmlwriter": "*",
614
+ "myclabs/deep-copy": "^1.13.4",
615
+ "phar-io/manifest": "^2.0.4",
616
+ "phar-io/version": "^3.2.1",
617
+ "php": ">=8.2",
618
+ "phpunit/php-code-coverage": "^11.0.12",
619
+ "phpunit/php-file-iterator": "^5.1.1",
620
+ "phpunit/php-invoker": "^5.0.1",
621
+ "phpunit/php-text-template": "^4.0.1",
622
+ "phpunit/php-timer": "^7.0.1",
623
+ "sebastian/cli-parser": "^3.0.2",
624
+ "sebastian/code-unit": "^3.0.3",
625
+ "sebastian/comparator": "^6.3.3",
626
+ "sebastian/diff": "^6.0.2",
627
+ "sebastian/environment": "^7.2.1",
628
+ "sebastian/exporter": "^6.3.2",
629
+ "sebastian/global-state": "^7.0.2",
630
+ "sebastian/object-enumerator": "^6.0.1",
631
+ "sebastian/recursion-context": "^6.0.3",
632
+ "sebastian/type": "^5.1.3",
633
+ "sebastian/version": "^5.0.2",
634
+ "staabm/side-effects-detector": "^1.0.5"
635
+ },
636
+ "suggest": {
637
+ "ext-soap": "To be able to generate mocks based on WSDL files"
638
+ },
639
+ "bin": [
640
+ "phpunit"
641
+ ],
642
+ "type": "library",
643
+ "extra": {
644
+ "branch-alias": {
645
+ "dev-main": "11.5-dev"
646
+ }
647
+ },
648
+ "autoload": {
649
+ "files": [
650
+ "src/Framework/Assert/Functions.php"
651
+ ],
652
+ "classmap": [
653
+ "src/"
654
+ ]
655
+ },
656
+ "notification-url": "https://packagist.org/downloads/",
657
+ "license": [
658
+ "BSD-3-Clause"
659
+ ],
660
+ "authors": [
661
+ {
662
+ "name": "Sebastian Bergmann",
663
+ "email": "sebastian@phpunit.de",
664
+ "role": "lead"
665
+ }
666
+ ],
667
+ "description": "The PHP Unit Testing framework.",
668
+ "homepage": "https://phpunit.de/",
669
+ "keywords": [
670
+ "phpunit",
671
+ "testing",
672
+ "xunit"
673
+ ],
674
+ "support": {
675
+ "issues": "https://github.com/sebastianbergmann/phpunit/issues",
676
+ "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
677
+ "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.55"
678
+ },
679
+ "funding": [
680
+ {
681
+ "url": "https://phpunit.de/sponsors.html",
682
+ "type": "custom"
683
+ },
684
+ {
685
+ "url": "https://github.com/sebastianbergmann",
686
+ "type": "github"
687
+ },
688
+ {
689
+ "url": "https://liberapay.com/sebastianbergmann",
690
+ "type": "liberapay"
691
+ },
692
+ {
693
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
694
+ "type": "thanks_dev"
695
+ },
696
+ {
697
+ "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
698
+ "type": "tidelift"
699
+ }
700
+ ],
701
+ "time": "2026-02-18T12:37:06+00:00"
702
+ },
703
+ {
704
+ "name": "sebastian/cli-parser",
705
+ "version": "3.0.2",
706
+ "source": {
707
+ "type": "git",
708
+ "url": "https://github.com/sebastianbergmann/cli-parser.git",
709
+ "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
710
+ },
711
+ "dist": {
712
+ "type": "zip",
713
+ "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
714
+ "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
715
+ "shasum": ""
716
+ },
717
+ "require": {
718
+ "php": ">=8.2"
719
+ },
720
+ "require-dev": {
721
+ "phpunit/phpunit": "^11.0"
722
+ },
723
+ "type": "library",
724
+ "extra": {
725
+ "branch-alias": {
726
+ "dev-main": "3.0-dev"
727
+ }
728
+ },
729
+ "autoload": {
730
+ "classmap": [
731
+ "src/"
732
+ ]
733
+ },
734
+ "notification-url": "https://packagist.org/downloads/",
735
+ "license": [
736
+ "BSD-3-Clause"
737
+ ],
738
+ "authors": [
739
+ {
740
+ "name": "Sebastian Bergmann",
741
+ "email": "sebastian@phpunit.de",
742
+ "role": "lead"
743
+ }
744
+ ],
745
+ "description": "Library for parsing CLI options",
746
+ "homepage": "https://github.com/sebastianbergmann/cli-parser",
747
+ "support": {
748
+ "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
749
+ "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
750
+ "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
751
+ },
752
+ "funding": [
753
+ {
754
+ "url": "https://github.com/sebastianbergmann",
755
+ "type": "github"
756
+ }
757
+ ],
758
+ "time": "2024-07-03T04:41:36+00:00"
759
+ },
760
+ {
761
+ "name": "sebastian/code-unit",
762
+ "version": "3.0.3",
763
+ "source": {
764
+ "type": "git",
765
+ "url": "https://github.com/sebastianbergmann/code-unit.git",
766
+ "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64"
767
+ },
768
+ "dist": {
769
+ "type": "zip",
770
+ "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64",
771
+ "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64",
772
+ "shasum": ""
773
+ },
774
+ "require": {
775
+ "php": ">=8.2"
776
+ },
777
+ "require-dev": {
778
+ "phpunit/phpunit": "^11.5"
779
+ },
780
+ "type": "library",
781
+ "extra": {
782
+ "branch-alias": {
783
+ "dev-main": "3.0-dev"
784
+ }
785
+ },
786
+ "autoload": {
787
+ "classmap": [
788
+ "src/"
789
+ ]
790
+ },
791
+ "notification-url": "https://packagist.org/downloads/",
792
+ "license": [
793
+ "BSD-3-Clause"
794
+ ],
795
+ "authors": [
796
+ {
797
+ "name": "Sebastian Bergmann",
798
+ "email": "sebastian@phpunit.de",
799
+ "role": "lead"
800
+ }
801
+ ],
802
+ "description": "Collection of value objects that represent the PHP code units",
803
+ "homepage": "https://github.com/sebastianbergmann/code-unit",
804
+ "support": {
805
+ "issues": "https://github.com/sebastianbergmann/code-unit/issues",
806
+ "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
807
+ "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3"
808
+ },
809
+ "funding": [
810
+ {
811
+ "url": "https://github.com/sebastianbergmann",
812
+ "type": "github"
813
+ }
814
+ ],
815
+ "time": "2025-03-19T07:56:08+00:00"
816
+ },
817
+ {
818
+ "name": "sebastian/code-unit-reverse-lookup",
819
+ "version": "4.0.1",
820
+ "source": {
821
+ "type": "git",
822
+ "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
823
+ "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
824
+ },
825
+ "dist": {
826
+ "type": "zip",
827
+ "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
828
+ "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
829
+ "shasum": ""
830
+ },
831
+ "require": {
832
+ "php": ">=8.2"
833
+ },
834
+ "require-dev": {
835
+ "phpunit/phpunit": "^11.0"
836
+ },
837
+ "type": "library",
838
+ "extra": {
839
+ "branch-alias": {
840
+ "dev-main": "4.0-dev"
841
+ }
842
+ },
843
+ "autoload": {
844
+ "classmap": [
845
+ "src/"
846
+ ]
847
+ },
848
+ "notification-url": "https://packagist.org/downloads/",
849
+ "license": [
850
+ "BSD-3-Clause"
851
+ ],
852
+ "authors": [
853
+ {
854
+ "name": "Sebastian Bergmann",
855
+ "email": "sebastian@phpunit.de"
856
+ }
857
+ ],
858
+ "description": "Looks up which function or method a line of code belongs to",
859
+ "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
860
+ "support": {
861
+ "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
862
+ "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
863
+ "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
864
+ },
865
+ "funding": [
866
+ {
867
+ "url": "https://github.com/sebastianbergmann",
868
+ "type": "github"
869
+ }
870
+ ],
871
+ "time": "2024-07-03T04:45:54+00:00"
872
+ },
873
+ {
874
+ "name": "sebastian/comparator",
875
+ "version": "6.3.3",
876
+ "source": {
877
+ "type": "git",
878
+ "url": "https://github.com/sebastianbergmann/comparator.git",
879
+ "reference": "2c95e1e86cb8dd41beb8d502057d1081ccc8eca9"
880
+ },
881
+ "dist": {
882
+ "type": "zip",
883
+ "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2c95e1e86cb8dd41beb8d502057d1081ccc8eca9",
884
+ "reference": "2c95e1e86cb8dd41beb8d502057d1081ccc8eca9",
885
+ "shasum": ""
886
+ },
887
+ "require": {
888
+ "ext-dom": "*",
889
+ "ext-mbstring": "*",
890
+ "php": ">=8.2",
891
+ "sebastian/diff": "^6.0",
892
+ "sebastian/exporter": "^6.0"
893
+ },
894
+ "require-dev": {
895
+ "phpunit/phpunit": "^11.4"
896
+ },
897
+ "suggest": {
898
+ "ext-bcmath": "For comparing BcMath\\Number objects"
899
+ },
900
+ "type": "library",
901
+ "extra": {
902
+ "branch-alias": {
903
+ "dev-main": "6.3-dev"
904
+ }
905
+ },
906
+ "autoload": {
907
+ "classmap": [
908
+ "src/"
909
+ ]
910
+ },
911
+ "notification-url": "https://packagist.org/downloads/",
912
+ "license": [
913
+ "BSD-3-Clause"
914
+ ],
915
+ "authors": [
916
+ {
917
+ "name": "Sebastian Bergmann",
918
+ "email": "sebastian@phpunit.de"
919
+ },
920
+ {
921
+ "name": "Jeff Welch",
922
+ "email": "whatthejeff@gmail.com"
923
+ },
924
+ {
925
+ "name": "Volker Dusch",
926
+ "email": "github@wallbash.com"
927
+ },
928
+ {
929
+ "name": "Bernhard Schussek",
930
+ "email": "bschussek@2bepublished.at"
931
+ }
932
+ ],
933
+ "description": "Provides the functionality to compare PHP values for equality",
934
+ "homepage": "https://github.com/sebastianbergmann/comparator",
935
+ "keywords": [
936
+ "comparator",
937
+ "compare",
938
+ "equality"
939
+ ],
940
+ "support": {
941
+ "issues": "https://github.com/sebastianbergmann/comparator/issues",
942
+ "security": "https://github.com/sebastianbergmann/comparator/security/policy",
943
+ "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.3"
944
+ },
945
+ "funding": [
946
+ {
947
+ "url": "https://github.com/sebastianbergmann",
948
+ "type": "github"
949
+ },
950
+ {
951
+ "url": "https://liberapay.com/sebastianbergmann",
952
+ "type": "liberapay"
953
+ },
954
+ {
955
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
956
+ "type": "thanks_dev"
957
+ },
958
+ {
959
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
960
+ "type": "tidelift"
961
+ }
962
+ ],
963
+ "time": "2026-01-24T09:26:40+00:00"
964
+ },
965
+ {
966
+ "name": "sebastian/complexity",
967
+ "version": "4.0.1",
968
+ "source": {
969
+ "type": "git",
970
+ "url": "https://github.com/sebastianbergmann/complexity.git",
971
+ "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
972
+ },
973
+ "dist": {
974
+ "type": "zip",
975
+ "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
976
+ "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
977
+ "shasum": ""
978
+ },
979
+ "require": {
980
+ "nikic/php-parser": "^5.0",
981
+ "php": ">=8.2"
982
+ },
983
+ "require-dev": {
984
+ "phpunit/phpunit": "^11.0"
985
+ },
986
+ "type": "library",
987
+ "extra": {
988
+ "branch-alias": {
989
+ "dev-main": "4.0-dev"
990
+ }
991
+ },
992
+ "autoload": {
993
+ "classmap": [
994
+ "src/"
995
+ ]
996
+ },
997
+ "notification-url": "https://packagist.org/downloads/",
998
+ "license": [
999
+ "BSD-3-Clause"
1000
+ ],
1001
+ "authors": [
1002
+ {
1003
+ "name": "Sebastian Bergmann",
1004
+ "email": "sebastian@phpunit.de",
1005
+ "role": "lead"
1006
+ }
1007
+ ],
1008
+ "description": "Library for calculating the complexity of PHP code units",
1009
+ "homepage": "https://github.com/sebastianbergmann/complexity",
1010
+ "support": {
1011
+ "issues": "https://github.com/sebastianbergmann/complexity/issues",
1012
+ "security": "https://github.com/sebastianbergmann/complexity/security/policy",
1013
+ "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
1014
+ },
1015
+ "funding": [
1016
+ {
1017
+ "url": "https://github.com/sebastianbergmann",
1018
+ "type": "github"
1019
+ }
1020
+ ],
1021
+ "time": "2024-07-03T04:49:50+00:00"
1022
+ },
1023
+ {
1024
+ "name": "sebastian/diff",
1025
+ "version": "6.0.2",
1026
+ "source": {
1027
+ "type": "git",
1028
+ "url": "https://github.com/sebastianbergmann/diff.git",
1029
+ "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
1030
+ },
1031
+ "dist": {
1032
+ "type": "zip",
1033
+ "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
1034
+ "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
1035
+ "shasum": ""
1036
+ },
1037
+ "require": {
1038
+ "php": ">=8.2"
1039
+ },
1040
+ "require-dev": {
1041
+ "phpunit/phpunit": "^11.0",
1042
+ "symfony/process": "^4.2 || ^5"
1043
+ },
1044
+ "type": "library",
1045
+ "extra": {
1046
+ "branch-alias": {
1047
+ "dev-main": "6.0-dev"
1048
+ }
1049
+ },
1050
+ "autoload": {
1051
+ "classmap": [
1052
+ "src/"
1053
+ ]
1054
+ },
1055
+ "notification-url": "https://packagist.org/downloads/",
1056
+ "license": [
1057
+ "BSD-3-Clause"
1058
+ ],
1059
+ "authors": [
1060
+ {
1061
+ "name": "Sebastian Bergmann",
1062
+ "email": "sebastian@phpunit.de"
1063
+ },
1064
+ {
1065
+ "name": "Kore Nordmann",
1066
+ "email": "mail@kore-nordmann.de"
1067
+ }
1068
+ ],
1069
+ "description": "Diff implementation",
1070
+ "homepage": "https://github.com/sebastianbergmann/diff",
1071
+ "keywords": [
1072
+ "diff",
1073
+ "udiff",
1074
+ "unidiff",
1075
+ "unified diff"
1076
+ ],
1077
+ "support": {
1078
+ "issues": "https://github.com/sebastianbergmann/diff/issues",
1079
+ "security": "https://github.com/sebastianbergmann/diff/security/policy",
1080
+ "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
1081
+ },
1082
+ "funding": [
1083
+ {
1084
+ "url": "https://github.com/sebastianbergmann",
1085
+ "type": "github"
1086
+ }
1087
+ ],
1088
+ "time": "2024-07-03T04:53:05+00:00"
1089
+ },
1090
+ {
1091
+ "name": "sebastian/environment",
1092
+ "version": "7.2.1",
1093
+ "source": {
1094
+ "type": "git",
1095
+ "url": "https://github.com/sebastianbergmann/environment.git",
1096
+ "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4"
1097
+ },
1098
+ "dist": {
1099
+ "type": "zip",
1100
+ "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4",
1101
+ "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4",
1102
+ "shasum": ""
1103
+ },
1104
+ "require": {
1105
+ "php": ">=8.2"
1106
+ },
1107
+ "require-dev": {
1108
+ "phpunit/phpunit": "^11.3"
1109
+ },
1110
+ "suggest": {
1111
+ "ext-posix": "*"
1112
+ },
1113
+ "type": "library",
1114
+ "extra": {
1115
+ "branch-alias": {
1116
+ "dev-main": "7.2-dev"
1117
+ }
1118
+ },
1119
+ "autoload": {
1120
+ "classmap": [
1121
+ "src/"
1122
+ ]
1123
+ },
1124
+ "notification-url": "https://packagist.org/downloads/",
1125
+ "license": [
1126
+ "BSD-3-Clause"
1127
+ ],
1128
+ "authors": [
1129
+ {
1130
+ "name": "Sebastian Bergmann",
1131
+ "email": "sebastian@phpunit.de"
1132
+ }
1133
+ ],
1134
+ "description": "Provides functionality to handle HHVM/PHP environments",
1135
+ "homepage": "https://github.com/sebastianbergmann/environment",
1136
+ "keywords": [
1137
+ "Xdebug",
1138
+ "environment",
1139
+ "hhvm"
1140
+ ],
1141
+ "support": {
1142
+ "issues": "https://github.com/sebastianbergmann/environment/issues",
1143
+ "security": "https://github.com/sebastianbergmann/environment/security/policy",
1144
+ "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1"
1145
+ },
1146
+ "funding": [
1147
+ {
1148
+ "url": "https://github.com/sebastianbergmann",
1149
+ "type": "github"
1150
+ },
1151
+ {
1152
+ "url": "https://liberapay.com/sebastianbergmann",
1153
+ "type": "liberapay"
1154
+ },
1155
+ {
1156
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
1157
+ "type": "thanks_dev"
1158
+ },
1159
+ {
1160
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
1161
+ "type": "tidelift"
1162
+ }
1163
+ ],
1164
+ "time": "2025-05-21T11:55:47+00:00"
1165
+ },
1166
+ {
1167
+ "name": "sebastian/exporter",
1168
+ "version": "6.3.2",
1169
+ "source": {
1170
+ "type": "git",
1171
+ "url": "https://github.com/sebastianbergmann/exporter.git",
1172
+ "reference": "70a298763b40b213ec087c51c739efcaa90bcd74"
1173
+ },
1174
+ "dist": {
1175
+ "type": "zip",
1176
+ "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/70a298763b40b213ec087c51c739efcaa90bcd74",
1177
+ "reference": "70a298763b40b213ec087c51c739efcaa90bcd74",
1178
+ "shasum": ""
1179
+ },
1180
+ "require": {
1181
+ "ext-mbstring": "*",
1182
+ "php": ">=8.2",
1183
+ "sebastian/recursion-context": "^6.0"
1184
+ },
1185
+ "require-dev": {
1186
+ "phpunit/phpunit": "^11.3"
1187
+ },
1188
+ "type": "library",
1189
+ "extra": {
1190
+ "branch-alias": {
1191
+ "dev-main": "6.3-dev"
1192
+ }
1193
+ },
1194
+ "autoload": {
1195
+ "classmap": [
1196
+ "src/"
1197
+ ]
1198
+ },
1199
+ "notification-url": "https://packagist.org/downloads/",
1200
+ "license": [
1201
+ "BSD-3-Clause"
1202
+ ],
1203
+ "authors": [
1204
+ {
1205
+ "name": "Sebastian Bergmann",
1206
+ "email": "sebastian@phpunit.de"
1207
+ },
1208
+ {
1209
+ "name": "Jeff Welch",
1210
+ "email": "whatthejeff@gmail.com"
1211
+ },
1212
+ {
1213
+ "name": "Volker Dusch",
1214
+ "email": "github@wallbash.com"
1215
+ },
1216
+ {
1217
+ "name": "Adam Harvey",
1218
+ "email": "aharvey@php.net"
1219
+ },
1220
+ {
1221
+ "name": "Bernhard Schussek",
1222
+ "email": "bschussek@gmail.com"
1223
+ }
1224
+ ],
1225
+ "description": "Provides the functionality to export PHP variables for visualization",
1226
+ "homepage": "https://www.github.com/sebastianbergmann/exporter",
1227
+ "keywords": [
1228
+ "export",
1229
+ "exporter"
1230
+ ],
1231
+ "support": {
1232
+ "issues": "https://github.com/sebastianbergmann/exporter/issues",
1233
+ "security": "https://github.com/sebastianbergmann/exporter/security/policy",
1234
+ "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.2"
1235
+ },
1236
+ "funding": [
1237
+ {
1238
+ "url": "https://github.com/sebastianbergmann",
1239
+ "type": "github"
1240
+ },
1241
+ {
1242
+ "url": "https://liberapay.com/sebastianbergmann",
1243
+ "type": "liberapay"
1244
+ },
1245
+ {
1246
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
1247
+ "type": "thanks_dev"
1248
+ },
1249
+ {
1250
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
1251
+ "type": "tidelift"
1252
+ }
1253
+ ],
1254
+ "time": "2025-09-24T06:12:51+00:00"
1255
+ },
1256
+ {
1257
+ "name": "sebastian/global-state",
1258
+ "version": "7.0.2",
1259
+ "source": {
1260
+ "type": "git",
1261
+ "url": "https://github.com/sebastianbergmann/global-state.git",
1262
+ "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
1263
+ },
1264
+ "dist": {
1265
+ "type": "zip",
1266
+ "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
1267
+ "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
1268
+ "shasum": ""
1269
+ },
1270
+ "require": {
1271
+ "php": ">=8.2",
1272
+ "sebastian/object-reflector": "^4.0",
1273
+ "sebastian/recursion-context": "^6.0"
1274
+ },
1275
+ "require-dev": {
1276
+ "ext-dom": "*",
1277
+ "phpunit/phpunit": "^11.0"
1278
+ },
1279
+ "type": "library",
1280
+ "extra": {
1281
+ "branch-alias": {
1282
+ "dev-main": "7.0-dev"
1283
+ }
1284
+ },
1285
+ "autoload": {
1286
+ "classmap": [
1287
+ "src/"
1288
+ ]
1289
+ },
1290
+ "notification-url": "https://packagist.org/downloads/",
1291
+ "license": [
1292
+ "BSD-3-Clause"
1293
+ ],
1294
+ "authors": [
1295
+ {
1296
+ "name": "Sebastian Bergmann",
1297
+ "email": "sebastian@phpunit.de"
1298
+ }
1299
+ ],
1300
+ "description": "Snapshotting of global state",
1301
+ "homepage": "https://www.github.com/sebastianbergmann/global-state",
1302
+ "keywords": [
1303
+ "global state"
1304
+ ],
1305
+ "support": {
1306
+ "issues": "https://github.com/sebastianbergmann/global-state/issues",
1307
+ "security": "https://github.com/sebastianbergmann/global-state/security/policy",
1308
+ "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
1309
+ },
1310
+ "funding": [
1311
+ {
1312
+ "url": "https://github.com/sebastianbergmann",
1313
+ "type": "github"
1314
+ }
1315
+ ],
1316
+ "time": "2024-07-03T04:57:36+00:00"
1317
+ },
1318
+ {
1319
+ "name": "sebastian/lines-of-code",
1320
+ "version": "3.0.1",
1321
+ "source": {
1322
+ "type": "git",
1323
+ "url": "https://github.com/sebastianbergmann/lines-of-code.git",
1324
+ "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
1325
+ },
1326
+ "dist": {
1327
+ "type": "zip",
1328
+ "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
1329
+ "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
1330
+ "shasum": ""
1331
+ },
1332
+ "require": {
1333
+ "nikic/php-parser": "^5.0",
1334
+ "php": ">=8.2"
1335
+ },
1336
+ "require-dev": {
1337
+ "phpunit/phpunit": "^11.0"
1338
+ },
1339
+ "type": "library",
1340
+ "extra": {
1341
+ "branch-alias": {
1342
+ "dev-main": "3.0-dev"
1343
+ }
1344
+ },
1345
+ "autoload": {
1346
+ "classmap": [
1347
+ "src/"
1348
+ ]
1349
+ },
1350
+ "notification-url": "https://packagist.org/downloads/",
1351
+ "license": [
1352
+ "BSD-3-Clause"
1353
+ ],
1354
+ "authors": [
1355
+ {
1356
+ "name": "Sebastian Bergmann",
1357
+ "email": "sebastian@phpunit.de",
1358
+ "role": "lead"
1359
+ }
1360
+ ],
1361
+ "description": "Library for counting the lines of code in PHP source code",
1362
+ "homepage": "https://github.com/sebastianbergmann/lines-of-code",
1363
+ "support": {
1364
+ "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
1365
+ "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
1366
+ "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
1367
+ },
1368
+ "funding": [
1369
+ {
1370
+ "url": "https://github.com/sebastianbergmann",
1371
+ "type": "github"
1372
+ }
1373
+ ],
1374
+ "time": "2024-07-03T04:58:38+00:00"
1375
+ },
1376
+ {
1377
+ "name": "sebastian/object-enumerator",
1378
+ "version": "6.0.1",
1379
+ "source": {
1380
+ "type": "git",
1381
+ "url": "https://github.com/sebastianbergmann/object-enumerator.git",
1382
+ "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
1383
+ },
1384
+ "dist": {
1385
+ "type": "zip",
1386
+ "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
1387
+ "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
1388
+ "shasum": ""
1389
+ },
1390
+ "require": {
1391
+ "php": ">=8.2",
1392
+ "sebastian/object-reflector": "^4.0",
1393
+ "sebastian/recursion-context": "^6.0"
1394
+ },
1395
+ "require-dev": {
1396
+ "phpunit/phpunit": "^11.0"
1397
+ },
1398
+ "type": "library",
1399
+ "extra": {
1400
+ "branch-alias": {
1401
+ "dev-main": "6.0-dev"
1402
+ }
1403
+ },
1404
+ "autoload": {
1405
+ "classmap": [
1406
+ "src/"
1407
+ ]
1408
+ },
1409
+ "notification-url": "https://packagist.org/downloads/",
1410
+ "license": [
1411
+ "BSD-3-Clause"
1412
+ ],
1413
+ "authors": [
1414
+ {
1415
+ "name": "Sebastian Bergmann",
1416
+ "email": "sebastian@phpunit.de"
1417
+ }
1418
+ ],
1419
+ "description": "Traverses array structures and object graphs to enumerate all referenced objects",
1420
+ "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
1421
+ "support": {
1422
+ "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
1423
+ "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
1424
+ "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
1425
+ },
1426
+ "funding": [
1427
+ {
1428
+ "url": "https://github.com/sebastianbergmann",
1429
+ "type": "github"
1430
+ }
1431
+ ],
1432
+ "time": "2024-07-03T05:00:13+00:00"
1433
+ },
1434
+ {
1435
+ "name": "sebastian/object-reflector",
1436
+ "version": "4.0.1",
1437
+ "source": {
1438
+ "type": "git",
1439
+ "url": "https://github.com/sebastianbergmann/object-reflector.git",
1440
+ "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
1441
+ },
1442
+ "dist": {
1443
+ "type": "zip",
1444
+ "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
1445
+ "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
1446
+ "shasum": ""
1447
+ },
1448
+ "require": {
1449
+ "php": ">=8.2"
1450
+ },
1451
+ "require-dev": {
1452
+ "phpunit/phpunit": "^11.0"
1453
+ },
1454
+ "type": "library",
1455
+ "extra": {
1456
+ "branch-alias": {
1457
+ "dev-main": "4.0-dev"
1458
+ }
1459
+ },
1460
+ "autoload": {
1461
+ "classmap": [
1462
+ "src/"
1463
+ ]
1464
+ },
1465
+ "notification-url": "https://packagist.org/downloads/",
1466
+ "license": [
1467
+ "BSD-3-Clause"
1468
+ ],
1469
+ "authors": [
1470
+ {
1471
+ "name": "Sebastian Bergmann",
1472
+ "email": "sebastian@phpunit.de"
1473
+ }
1474
+ ],
1475
+ "description": "Allows reflection of object attributes, including inherited and non-public ones",
1476
+ "homepage": "https://github.com/sebastianbergmann/object-reflector/",
1477
+ "support": {
1478
+ "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
1479
+ "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
1480
+ "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
1481
+ },
1482
+ "funding": [
1483
+ {
1484
+ "url": "https://github.com/sebastianbergmann",
1485
+ "type": "github"
1486
+ }
1487
+ ],
1488
+ "time": "2024-07-03T05:01:32+00:00"
1489
+ },
1490
+ {
1491
+ "name": "sebastian/recursion-context",
1492
+ "version": "6.0.3",
1493
+ "source": {
1494
+ "type": "git",
1495
+ "url": "https://github.com/sebastianbergmann/recursion-context.git",
1496
+ "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc"
1497
+ },
1498
+ "dist": {
1499
+ "type": "zip",
1500
+ "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/f6458abbf32a6c8174f8f26261475dc133b3d9dc",
1501
+ "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc",
1502
+ "shasum": ""
1503
+ },
1504
+ "require": {
1505
+ "php": ">=8.2"
1506
+ },
1507
+ "require-dev": {
1508
+ "phpunit/phpunit": "^11.3"
1509
+ },
1510
+ "type": "library",
1511
+ "extra": {
1512
+ "branch-alias": {
1513
+ "dev-main": "6.0-dev"
1514
+ }
1515
+ },
1516
+ "autoload": {
1517
+ "classmap": [
1518
+ "src/"
1519
+ ]
1520
+ },
1521
+ "notification-url": "https://packagist.org/downloads/",
1522
+ "license": [
1523
+ "BSD-3-Clause"
1524
+ ],
1525
+ "authors": [
1526
+ {
1527
+ "name": "Sebastian Bergmann",
1528
+ "email": "sebastian@phpunit.de"
1529
+ },
1530
+ {
1531
+ "name": "Jeff Welch",
1532
+ "email": "whatthejeff@gmail.com"
1533
+ },
1534
+ {
1535
+ "name": "Adam Harvey",
1536
+ "email": "aharvey@php.net"
1537
+ }
1538
+ ],
1539
+ "description": "Provides functionality to recursively process PHP variables",
1540
+ "homepage": "https://github.com/sebastianbergmann/recursion-context",
1541
+ "support": {
1542
+ "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
1543
+ "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
1544
+ "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.3"
1545
+ },
1546
+ "funding": [
1547
+ {
1548
+ "url": "https://github.com/sebastianbergmann",
1549
+ "type": "github"
1550
+ },
1551
+ {
1552
+ "url": "https://liberapay.com/sebastianbergmann",
1553
+ "type": "liberapay"
1554
+ },
1555
+ {
1556
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
1557
+ "type": "thanks_dev"
1558
+ },
1559
+ {
1560
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context",
1561
+ "type": "tidelift"
1562
+ }
1563
+ ],
1564
+ "time": "2025-08-13T04:42:22+00:00"
1565
+ },
1566
+ {
1567
+ "name": "sebastian/type",
1568
+ "version": "5.1.3",
1569
+ "source": {
1570
+ "type": "git",
1571
+ "url": "https://github.com/sebastianbergmann/type.git",
1572
+ "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449"
1573
+ },
1574
+ "dist": {
1575
+ "type": "zip",
1576
+ "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/f77d2d4e78738c98d9a68d2596fe5e8fa380f449",
1577
+ "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449",
1578
+ "shasum": ""
1579
+ },
1580
+ "require": {
1581
+ "php": ">=8.2"
1582
+ },
1583
+ "require-dev": {
1584
+ "phpunit/phpunit": "^11.3"
1585
+ },
1586
+ "type": "library",
1587
+ "extra": {
1588
+ "branch-alias": {
1589
+ "dev-main": "5.1-dev"
1590
+ }
1591
+ },
1592
+ "autoload": {
1593
+ "classmap": [
1594
+ "src/"
1595
+ ]
1596
+ },
1597
+ "notification-url": "https://packagist.org/downloads/",
1598
+ "license": [
1599
+ "BSD-3-Clause"
1600
+ ],
1601
+ "authors": [
1602
+ {
1603
+ "name": "Sebastian Bergmann",
1604
+ "email": "sebastian@phpunit.de",
1605
+ "role": "lead"
1606
+ }
1607
+ ],
1608
+ "description": "Collection of value objects that represent the types of the PHP type system",
1609
+ "homepage": "https://github.com/sebastianbergmann/type",
1610
+ "support": {
1611
+ "issues": "https://github.com/sebastianbergmann/type/issues",
1612
+ "security": "https://github.com/sebastianbergmann/type/security/policy",
1613
+ "source": "https://github.com/sebastianbergmann/type/tree/5.1.3"
1614
+ },
1615
+ "funding": [
1616
+ {
1617
+ "url": "https://github.com/sebastianbergmann",
1618
+ "type": "github"
1619
+ },
1620
+ {
1621
+ "url": "https://liberapay.com/sebastianbergmann",
1622
+ "type": "liberapay"
1623
+ },
1624
+ {
1625
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
1626
+ "type": "thanks_dev"
1627
+ },
1628
+ {
1629
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/type",
1630
+ "type": "tidelift"
1631
+ }
1632
+ ],
1633
+ "time": "2025-08-09T06:55:48+00:00"
1634
+ },
1635
+ {
1636
+ "name": "sebastian/version",
1637
+ "version": "5.0.2",
1638
+ "source": {
1639
+ "type": "git",
1640
+ "url": "https://github.com/sebastianbergmann/version.git",
1641
+ "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
1642
+ },
1643
+ "dist": {
1644
+ "type": "zip",
1645
+ "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
1646
+ "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
1647
+ "shasum": ""
1648
+ },
1649
+ "require": {
1650
+ "php": ">=8.2"
1651
+ },
1652
+ "type": "library",
1653
+ "extra": {
1654
+ "branch-alias": {
1655
+ "dev-main": "5.0-dev"
1656
+ }
1657
+ },
1658
+ "autoload": {
1659
+ "classmap": [
1660
+ "src/"
1661
+ ]
1662
+ },
1663
+ "notification-url": "https://packagist.org/downloads/",
1664
+ "license": [
1665
+ "BSD-3-Clause"
1666
+ ],
1667
+ "authors": [
1668
+ {
1669
+ "name": "Sebastian Bergmann",
1670
+ "email": "sebastian@phpunit.de",
1671
+ "role": "lead"
1672
+ }
1673
+ ],
1674
+ "description": "Library that helps with managing the version number of Git-hosted PHP projects",
1675
+ "homepage": "https://github.com/sebastianbergmann/version",
1676
+ "support": {
1677
+ "issues": "https://github.com/sebastianbergmann/version/issues",
1678
+ "security": "https://github.com/sebastianbergmann/version/security/policy",
1679
+ "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
1680
+ },
1681
+ "funding": [
1682
+ {
1683
+ "url": "https://github.com/sebastianbergmann",
1684
+ "type": "github"
1685
+ }
1686
+ ],
1687
+ "time": "2024-10-09T05:16:32+00:00"
1688
+ },
1689
+ {
1690
+ "name": "squizlabs/php_codesniffer",
1691
+ "version": "3.13.5",
1692
+ "source": {
1693
+ "type": "git",
1694
+ "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
1695
+ "reference": "0ca86845ce43291e8f5692c7356fccf3bcf02bf4"
1696
+ },
1697
+ "dist": {
1698
+ "type": "zip",
1699
+ "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/0ca86845ce43291e8f5692c7356fccf3bcf02bf4",
1700
+ "reference": "0ca86845ce43291e8f5692c7356fccf3bcf02bf4",
1701
+ "shasum": ""
1702
+ },
1703
+ "require": {
1704
+ "ext-simplexml": "*",
1705
+ "ext-tokenizer": "*",
1706
+ "ext-xmlwriter": "*",
1707
+ "php": ">=5.4.0"
1708
+ },
1709
+ "require-dev": {
1710
+ "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
1711
+ },
1712
+ "bin": [
1713
+ "bin/phpcbf",
1714
+ "bin/phpcs"
1715
+ ],
1716
+ "type": "library",
1717
+ "notification-url": "https://packagist.org/downloads/",
1718
+ "license": [
1719
+ "BSD-3-Clause"
1720
+ ],
1721
+ "authors": [
1722
+ {
1723
+ "name": "Greg Sherwood",
1724
+ "role": "Former lead"
1725
+ },
1726
+ {
1727
+ "name": "Juliette Reinders Folmer",
1728
+ "role": "Current lead"
1729
+ },
1730
+ {
1731
+ "name": "Contributors",
1732
+ "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
1733
+ }
1734
+ ],
1735
+ "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
1736
+ "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
1737
+ "keywords": [
1738
+ "phpcs",
1739
+ "standards",
1740
+ "static analysis"
1741
+ ],
1742
+ "support": {
1743
+ "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
1744
+ "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
1745
+ "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
1746
+ "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
1747
+ },
1748
+ "funding": [
1749
+ {
1750
+ "url": "https://github.com/PHPCSStandards",
1751
+ "type": "github"
1752
+ },
1753
+ {
1754
+ "url": "https://github.com/jrfnl",
1755
+ "type": "github"
1756
+ },
1757
+ {
1758
+ "url": "https://opencollective.com/php_codesniffer",
1759
+ "type": "open_collective"
1760
+ },
1761
+ {
1762
+ "url": "https://thanks.dev/u/gh/phpcsstandards",
1763
+ "type": "thanks_dev"
1764
+ }
1765
+ ],
1766
+ "time": "2025-11-04T16:30:35+00:00"
1767
+ },
1768
+ {
1769
+ "name": "staabm/side-effects-detector",
1770
+ "version": "1.0.5",
1771
+ "source": {
1772
+ "type": "git",
1773
+ "url": "https://github.com/staabm/side-effects-detector.git",
1774
+ "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
1775
+ },
1776
+ "dist": {
1777
+ "type": "zip",
1778
+ "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
1779
+ "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
1780
+ "shasum": ""
1781
+ },
1782
+ "require": {
1783
+ "ext-tokenizer": "*",
1784
+ "php": "^7.4 || ^8.0"
1785
+ },
1786
+ "require-dev": {
1787
+ "phpstan/extension-installer": "^1.4.3",
1788
+ "phpstan/phpstan": "^1.12.6",
1789
+ "phpunit/phpunit": "^9.6.21",
1790
+ "symfony/var-dumper": "^5.4.43",
1791
+ "tomasvotruba/type-coverage": "1.0.0",
1792
+ "tomasvotruba/unused-public": "1.0.0"
1793
+ },
1794
+ "type": "library",
1795
+ "autoload": {
1796
+ "classmap": [
1797
+ "lib/"
1798
+ ]
1799
+ },
1800
+ "notification-url": "https://packagist.org/downloads/",
1801
+ "license": [
1802
+ "MIT"
1803
+ ],
1804
+ "description": "A static analysis tool to detect side effects in PHP code",
1805
+ "keywords": [
1806
+ "static analysis"
1807
+ ],
1808
+ "support": {
1809
+ "issues": "https://github.com/staabm/side-effects-detector/issues",
1810
+ "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
1811
+ },
1812
+ "funding": [
1813
+ {
1814
+ "url": "https://github.com/staabm",
1815
+ "type": "github"
1816
+ }
1817
+ ],
1818
+ "time": "2024-10-20T05:08:20+00:00"
1819
+ },
1820
+ {
1821
+ "name": "theseer/tokenizer",
1822
+ "version": "1.3.1",
1823
+ "source": {
1824
+ "type": "git",
1825
+ "url": "https://github.com/theseer/tokenizer.git",
1826
+ "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
1827
+ },
1828
+ "dist": {
1829
+ "type": "zip",
1830
+ "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
1831
+ "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
1832
+ "shasum": ""
1833
+ },
1834
+ "require": {
1835
+ "ext-dom": "*",
1836
+ "ext-tokenizer": "*",
1837
+ "ext-xmlwriter": "*",
1838
+ "php": "^7.2 || ^8.0"
1839
+ },
1840
+ "type": "library",
1841
+ "autoload": {
1842
+ "classmap": [
1843
+ "src/"
1844
+ ]
1845
+ },
1846
+ "notification-url": "https://packagist.org/downloads/",
1847
+ "license": [
1848
+ "BSD-3-Clause"
1849
+ ],
1850
+ "authors": [
1851
+ {
1852
+ "name": "Arne Blankerts",
1853
+ "email": "arne@blankerts.de",
1854
+ "role": "Developer"
1855
+ }
1856
+ ],
1857
+ "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
1858
+ "support": {
1859
+ "issues": "https://github.com/theseer/tokenizer/issues",
1860
+ "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
1861
+ },
1862
+ "funding": [
1863
+ {
1864
+ "url": "https://github.com/theseer",
1865
+ "type": "github"
1866
+ }
1867
+ ],
1868
+ "time": "2025-11-17T20:03:58+00:00"
1869
+ }
1870
+ ],
1871
+ "aliases": [],
1872
+ "minimum-stability": "stable",
1873
+ "stability-flags": {},
1874
+ "prefer-stable": false,
1875
+ "prefer-lowest": false,
1876
+ "platform": {
1877
+ "php": "^8.2"
1878
+ },
1879
+ "platform-dev": {},
1880
+ "plugin-api-version": "2.9.0"
1881
+ }