-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1 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
{
"name": "digital-craftsman/date-time-precision",
"version": "0.14.0",
"description": "A Symfony bundle for more precise date and time handling through value objects",
"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/serializer": "^7.4|^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.68.5",
"infection/infection": "^0.32",
"phpunit/phpunit": "^10.5",
"vimeo/psalm": "^6.0.0"
},
"autoload": {
"psr-4": {
"DigitalCraftsman\\DateTimePrecision\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DigitalCraftsman\\DateTimePrecision\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Christian Kolb",
"email": "info@digital-craftsman.de"
}
],
"config": {
"allow-plugins": {
"infection/extension-installer": true
},
"sort-packages": true
}
}