-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
executable file
·43 lines (43 loc) · 1.04 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
{
"name": "zman/zman",
"description": "A Jewish date converter and helper.",
"license": "MIT",
"keywords": [
"Jewish",
"date",
"conversion",
"converter"
],
"authors": [
{
"name": "Ari Miller",
"email": "[email protected]"
}
],
"autoload": {
"files": [
"src/Helpers/helpers.php"
],
"psr-4": {
"Zman\\": "src/"
}
},
"require": {
"php": ">=7.1.8",
"nesbot/carbon": "^2.49"
},
"require-dev": {
"spatie/phpunit-watcher": "^1.23",
"vimeo/psalm": "^4.7",
"friendsofphp/php-cs-fixer": "^3.0",
"symfony/var-dumper": "^5.3",
"phpunit/phpunit": "^9.6"
},
"scripts": {
"psalm": "vendor/bin/psalm",
"lint": "vendor/bin/php-cs-fixer fix",
"test": "vendor/bin/phpunit",
"test-watch": "vendor/bin/phpunit-watcher watch",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
}
}