-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
41 lines (41 loc) · 993 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": "adrenalinkin/doctrine-utc-date-time",
"description": "Provides Doctrine DBAL date and time types for storing in UTC format into database",
"license": "MIT",
"type": "library",
"keywords": [
"symfony-component",
"doctrine-utc",
"doctrine-dbal",
"utc-datetime"
],
"authors": [
{
"name": "Viktor Linkin",
"email": "adrenalinkin@gmail.com"
}
],
"require": {
"php": "^7.1 || ^8.0",
"doctrine/dbal": "^2.7 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
},
"autoload": {
"psr-4": {
"Linkin\\Component\\DoctrineUTCDateTime\\": ""
},
"exclude-from-classmap": [
"Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Linkin\\Component\\DoctrineUTCDateTime\\Tests\\": "Tests/"
}
},
"config": {
"sort-packages": true
}
}