|
1 | 1 | { |
2 | 2 | "name": "fabiang/dateparser", |
3 | | - "description": "Parser for date strings", |
| 3 | + "description": "Date parsing library supporting the full format RFC3339", |
4 | 4 | "type": "library", |
5 | 5 | "license": "BSD-2-Clause", |
6 | 6 | "keywords": ["rfc3339", "dateparser", "date", "datetime", "parser"], |
7 | 7 | "authors": [ |
8 | 8 | { |
9 | 9 | "name": "Fabian Grutschus", |
10 | | - "email": "fabian.grutschus@invitel.de" |
| 10 | + "email": "github@lubyte.de" |
11 | 11 | } |
12 | 12 | ], |
13 | 13 | "minimum-stability": "stable", |
14 | 14 | "require": { |
15 | | - "php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", |
| 15 | + "php": "~8.3.0 || ~8.4.0 || ~8.5.0", |
16 | 16 | "phplrt/runtime": "^3.2" |
17 | 17 | }, |
| 18 | + "require-dev": { |
| 19 | + "phpunit/phpunit": "^12.0", |
| 20 | + "squizlabs/php_codesniffer": "*", |
| 21 | + "vimeo/psalm": "*", |
| 22 | + "laminas/laminas-coding-standard": "*", |
| 23 | + "phplrt/compiler": "^3.2", |
| 24 | + "mikey179/vfsstream": "^1.6.12" |
| 25 | + }, |
18 | 26 | "autoload": { |
19 | 27 | "psr-4": { |
20 | 28 | "Fabiang\\Dateparser\\": "src/" |
21 | 29 | } |
22 | 30 | }, |
23 | | - "require-dev": { |
24 | | - "phpunit/phpunit": "^9.5.16 || ^10.0", |
25 | | - "squizlabs/php_codesniffer": "^3.7", |
26 | | - "vimeo/psalm": "^4.23", |
27 | | - "laminas/laminas-coding-standard": "^2.3", |
28 | | - "phplrt/compiler": "^3.2" |
29 | | - }, |
30 | 31 | "scripts": { |
31 | | - "phpcs": "phpcs", |
| 32 | + "phpcs": "phpcs --colors", |
32 | 33 | "psalm": "psalm", |
33 | | - "phpunit": "phpunit", |
| 34 | + "phpunit": "phpunit --colors --coverage-text", |
34 | 35 | "test": [ |
35 | 36 | "@phpcs", |
36 | 37 | "@psalm", |
|
0 commit comments