-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.19 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.19 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
{
"name": "fabiang/dateparser",
"description": "Date parsing library supporting the full format RFC3339",
"type": "library",
"license": "BSD-2-Clause",
"keywords": ["rfc3339", "dateparser", "date", "datetime", "parser"],
"authors": [
{
"name": "Fabian Grutschus",
"email": "github@lubyte.de"
}
],
"minimum-stability": "stable",
"require": {
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
"phplrt/runtime": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^12.0",
"squizlabs/php_codesniffer": "*",
"vimeo/psalm": "*",
"laminas/laminas-coding-standard": "*",
"phplrt/compiler": "^3.2",
"mikey179/vfsstream": "^1.6.12"
},
"autoload": {
"psr-4": {
"Fabiang\\Dateparser\\": "src/"
}
},
"scripts": {
"phpcs": "phpcs --colors",
"psalm": "psalm",
"phpunit": "phpunit --colors --coverage-text",
"test": [
"@phpcs",
"@psalm",
"@phpunit"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}