forked from ProfessionalWiki/EDTF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 828 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
{
"name": "professional-wiki/edtf",
"license": "GPL-2.0-or-later",
"description": "PHP library to parse, represent and work with dates that follow the Extended Date/Time Format specification.",
"authors": [
{
"name": "Professional.Wiki",
"email": "[email protected]",
"homepage": "https://Professional.Wiki"
},
{
"name": "Jeroen De Dauw",
"email": "[email protected]",
"homepage": "https://www.EntropyWins.wtf/mediawiki"
}
],
"require": {
"ext-json": "*",
"php": "^7.4|^8",
"symfony/polyfill-php80": "^1.18.1",
"nesbot/carbon": "^2.41"
},
"require-dev": {
"phpunit/phpunit": "^9.5.2",
"vimeo/psalm": "^4.4.1",
"phpstan/phpstan": "^0.12.74"
},
"autoload": {
"psr-4": {
"EDTF\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EDTF\\Tests\\": "tests/"
}
}
}