-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.42 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
46
47
48
49
50
51
52
{
"name": "grosv/sundial",
"description": "An attempt at natural language date / time parsing in PHP",
"keywords": ["php", "date", "time", "natural language"],
"license": "MIT",
"authors": [
{
"name": "Ed Grosvenor",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4"
},
"require-dev": {
"pestphp/pest": "^0.2.2",
"friendsofphp/php-cs-fixer": "^2.16.3",
"ergebnis/phpstan-rules": "^0.15.0",
"phpstan/phpstan": "^0.12.31",
"phpstan/phpstan-strict-rules": "^0.12.2",
"symfony/var-dumper": "^5.1.2",
"rector/rector": "^0.7.37",
"thecodingmachine/phpstan-strict-rules": "^0.12.0"
},
"autoload": {
"psr-4": {
"Grosv\\Sundial\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist"
},
"scripts": {
"lint": "rector process src && php-cs-fixer fix -v",
"test:lint": "php-cs-fixer fix -v --dry-run && rector process src --dry-run",
"test:types": "phpstan analyse --ansi --memory-limit=0",
"test:unit": "pest --colors=always",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
]
}
}