This repository has been archived by the owner on Feb 19, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
45 lines (45 loc) · 1.42 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
{
"$schema": "https://github.com/composer/composer/blob/ebac357c0a41359f3981098729042ed6dedc97ba/res/composer-schema.json#",
"name": "ocramius/event-sourcing-workshop",
"license": "proprietary",
"description": "A test application for trying out event-sourcing in PHP for the first time",
"type": "application",
"autoload": {
"psr-4": {
"EventSourcingWorkshop\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"EventSourcingWorkshopTest\\": "test"
}
},
"require": {
"php": "~8.2.1",
"ext-pdo_sqlite": "*",
"azjezz/psl": "^2.9.1",
"cuyz/valinor": "^1.12.0",
"doctrine/dbal": "^3.8.6",
"psr/clock": "^1.0.0",
"lcobucci/clock": "^3.2.0",
"ramsey/uuid": "^4.7.6"
},
"require-dev": {
"doctrine/coding-standard": "^11.0.0",
"doctrine/migrations": "^3.5.2",
"php-standard-library/psalm-plugin": "^2.0.2",
"phpunit/phpunit": "^9.5.26",
"psalm/plugin-phpunit": "^0.19.0",
"qossmic/deptrac-shim": "^1.0.0",
"roave/infection-static-analysis-plugin": "^1.25.0",
"symfony/console": "^6.1.7",
"vimeo/psalm": "^5.0.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": false
}
}
}