-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 995 Bytes
/
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
{
"name": "digital-craftsman/date-time-precision",
"description": "A Symfony bundle for more precise date and time handling through value objects",
"type": "symfony-bundle",
"require": {
"php": "8.3.*|8.4.*",
"digital-craftsman/self-aware-normalizers": "^0.2.0",
"doctrine/dbal": "^3.4.0",
"symfony/framework-bundle": "^7.0",
"symfony/serializer": "^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.40",
"infection/infection": "0.27.*",
"phpunit/phpunit": "^10.5",
"vimeo/psalm": "^5.16"
},
"autoload": {
"psr-4": {
"DigitalCraftsman\\DateTimePrecision\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DigitalCraftsman\\DateTimePrecision\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Christian Kolb",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"infection/extension-installer": true
},
"sort-packages": true
}
}