-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcomposer.json
42 lines (42 loc) · 938 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
39
40
41
42
{
"name": "mlevent/fatura",
"description": "PHP için GİB eArşiv/eFatura entegrasyonu.",
"keywords": [
"gib",
"earşiv",
"efatura",
"e fatura",
"e arşiv",
"internet vergi dairesi"
],
"homepage": "https://github.com/mlevent/fatura",
"license": "MIT",
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.5",
"ramsey/uuid": "^4.5",
"kwn/number-to-words": "^2.6"
},
"require-dev": {
"phpunit/phpunit": "11.4.3"
},
"autoload": {
"files": [
"src/Utils/Helpers.php"
],
"psr-4": {
"Mlevent\\Fatura\\": "src/"
}
},
"authors": [
{
"name": "mlevent",
"email": "ghergedan@gmail.com"
}
],
"scripts": {
"test": "phpunit --debug"
},
"minimum-stability": "dev",
"prefer-stable": true
}