forked from enomotodev/JpCarbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.51 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
53
54
55
56
57
58
59
60
{
"name": "enomotodev/jp-carbon",
"type": "library",
"description": "Japanese extended version of carbon of the PHP datetime API.",
"keywords": [
"date",
"time",
"DateTime"
],
"homepage": "https://enomotodev.hatenablog.com",
"support": {
"issues": "https://github.com/enomotodev/JpCarbon/issues",
"source": "https://github.com/enomotodev/JpCarbon"
},
"license": "MIT",
"authors": [
{
"name": "enomotodev",
"email": "[email protected]",
"homepage": "https://enomotodev.hatenablog.com"
}
],
"require": {
"php": "^7.1.8 || ^8.0",
"nesbot/carbon": "~2.45"
},
"require-dev": {
"phpunit/phpunit": "^7.5.20 || ^8.5.14"
},
"suggest": {
"friendsofphp/php-cs-fixer": "Needed for the `composer phpcs` command. Allow to automatically fix code style."
},
"autoload": {
"files": [
"src/JpCarbon/helpers.php"
],
"psr-4": {
"JpCarbon\\": "src/JpCarbon/"
}
},
"autoload-dev": {
"psr-4": {
"JpCarbon\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"scripts": {
"test": [
"@phpunit",
"@phpcs"
],
"phpunit": "phpunit --verbose --coverage-clover=coverage.xml",
"phpcs": "php-cs-fixer fix -v --diff --dry-run"
},
"prefer-stable": true
}