-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
56 lines (56 loc) · 1.39 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
{
"name": "xthiago/id-value-object",
"description": "A Value Object (VO) for Object Identity (ID). Includes a Doctrine DBAL type for persistence.",
"type": "library",
"require": {
"php": ">= 7.2",
"ramsey/uuid": "^4.1",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.5.16 || ^9.5",
"vimeo/psalm": "^5.12",
"doctrine/dbal": "^2.13.1 || ^3.1",
"doctrine/coding-standard": "^9.0",
"symfony/serializer": "^5|^6"
},
"autoload": {
"psr-4": {
"Xthiago\\ValueObject\\Id\\": "src/"
}
},
"suggest": {
"doctrine/dbal": "To persist the Id instances into a relational database"
},
"autoload-dev": {
"psr-4": {
"Xthiago\\ValueObject\\Id\\": [
"tests/integration/",
"tests/unit/"
]
}
},
"scripts": {
"psalm": "psalm",
"phpcs": "phpcs",
"phpunit": "phpunit",
"ci": [
"@phpcs",
"@psalm",
"@phpunit"
],
"fix-phpcs": "phpcbf"
},
"license": "MIT",
"authors": [
{
"name": "Thiago Rodrigues (xthiago)",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}