-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
38 lines (38 loc) · 917 Bytes
/
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
{
"name": "andegna/calender",
"type": "library",
"description": "If you ever want to convert Ethiopian Calender to any other calender system (like the Gregorian Calender) this is the right package for you. And by the way it also support Amharic date formatting and much much more.",
"keywords": ["ethiopian", "date", "calender", "JDN"],
"license": "MIT",
"support": {
"issues": "https://github.com/andegna/calender/issues",
"source": "https://github.com/andegna/calender"
},
"authors": [
{
"name": "Sam As End",
"email": "4sam21@gmail.com"
}
],
"require": {
"php": ">=7.3",
"geezify/geezify-php": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Andegna\\": "src/",
"Andegna\\PHPUnit\\": "tests/"
}
},
"scripts": {
"test": "phpunit --coverage-clover=coverage.clover"
},
"extra": {
"branch-alias": {
"develop": "2.4-dev"
}
}
}