-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.13 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.13 KB
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
{
"name": "digital-craftsman/ids",
"version": "2.4.0",
"description": "Working with value objects for ids in Symfony",
"type": "symfony-bundle",
"require": {
"php": "8.4.*|8.5.*",
"digital-craftsman/self-aware-normalizers": "^1.3.0",
"doctrine/dbal": "^4.4",
"symfony/framework-bundle": "^7.4|^8.0",
"symfony/polyfill-uuid": "^1.31",
"symfony/serializer": "^7.4|^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.68.5",
"infection/infection": "0.32.*",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^10.5",
"vimeo/psalm": "^6.1.0"
},
"suggest": {
"ext-uuid": "Improves performance of id creation and validation. symfony/polyfill-uuid is used as a fallback."
},
"autoload": {
"psr-4": {
"DigitalCraftsman\\Ids\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DigitalCraftsman\\Ids\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Christian Kolb",
"email": "info@digital-craftsman.de"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
}
}