-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.15 KB
/
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
42
43
44
45
{
"name": "fabiang/dateparser",
"description": "Parser for date strings",
"type": "library",
"license": "BSD-2-Clause",
"keywords": ["rfc3339", "dateparser", "date", "datetime", "parser"],
"authors": [
{
"name": "Fabian Grutschus",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"phplrt/runtime": "^3.2"
},
"autoload": {
"psr-4": {
"Fabiang\\Dateparser\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5.16 || ^10.0",
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^4.23",
"laminas/laminas-coding-standard": "^2.3",
"phplrt/compiler": "^3.2"
},
"scripts": {
"phpcs": "phpcs",
"psalm": "psalm",
"phpunit": "phpunit",
"test": [
"@phpcs",
"@psalm",
"@phpunit"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}