-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
46 lines (46 loc) · 1.05 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
{
"name": "p3ym4n/jdate",
"type": "library",
"description": "Date converter from Jalali to Georgian and vice versa. It has Carbon instance inside and it's Laravel friendly.",
"keywords": [
"shamsi",
"jalali",
"hijri",
"laravel",
"date",
"time",
"DateTime"
],
"support": {
"issues": "https://github.com/p3ym4n/jdate/issues",
"source": "https://github.com/p3ym4n/jdate"
},
"license": "MIT",
"authors": [
{
"name": "Peyman Goldaste",
"email": "[email protected]",
"homepage": "http://p3ym4n.com"
}
],
"require": {
"php": ">=5.5",
"nesbot/carbon": "1.*"
},
"require-dev": {
"phpunit/phpunit": "^6.2"
},
"autoload": {
"psr-4": {
"p3ym4n\\JDate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"p3ym4n\\JDate\\Test\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests/JDateTest.php"
}
}