-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
47 lines (47 loc) · 1.06 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
{
"name": "itrack/anaf",
"type": "library",
"description": "API ANAF pentru verificarea contribuabililor care sunt inregistrati conform art. 316 din Codul Fiscal",
"license": "MIT",
"homepage": "https://devgeeks.ro",
"authors": [
{
"name": "Alex Stoica",
"email": "[email protected]"
}
],
"keywords": [
"api anaf",
"verificare tva",
"inregistrat tva",
"webservie anaf",
"date firma",
"mfinante"
],
"require": {
"php": ">=7.1 || >=8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.5.20 || ^9.5.2"
},
"autoload": {
"psr-4": {
"Itrack\\Anaf\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Itrack\\Anaf\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}