-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.2 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
{
"name": "turanjanin/serbian-fiscal-receipts-parser",
"description": "Library for parsing Serbian fiscal receipts.",
"keywords": ["serbia", "receipts", "bills", "fiscal", "tax"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jovan Turanjanin",
"email": "jovan@turanjanin.net",
"homepage": "https://www.turanjanin.net"
}
],
"autoload": {
"psr-4": {
"Turanjanin\\FiscalReceipts\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Turanjanin\\FiscalReceipts\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"ext-mbstring": "*",
"gravitypdf/querypath": "^4.0",
"php-http/discovery": "^1.17",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "*",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "*"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false
}
},
"require-dev": {
"guzzlehttp/guzzle": "^7.7",
"guzzlehttp/psr7": "^2.5",
"phpunit/phpunit": "^10"
}
}