-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
70 lines (70 loc) · 1.82 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "andalisolutions/anaf-php",
"description": "Description",
"keywords": ["php", "anaf", "sdk"],
"license": "MIT",
"authors": [
{
"name": "Andrei Ciungulete",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1.0",
"ext-iconv": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"guzzlehttp/guzzle": "^7.5.0",
"php-http/discovery": "^1.19"
},
"require-dev": {
"laravel/pint": "^1.13.7",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^7.0.0",
"pestphp/pest": "^2.30.0",
"pestphp/pest-plugin-arch": "^2.5",
"pestphp/pest-plugin-type-coverage": "^2.7",
"phpstan/phpstan": "^1.10.54",
"rector/rector": "^1.0.3",
"symfony/var-dumper": "^6.2.2"
},
"autoload": {
"psr-4": {
"Anaf\\": "src/"
},
"files": [
"src/Anaf.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"scripts": {
"lint": "pint -v",
"refactor": "rector --debug",
"test:lint": "pint --test -v",
"test:refactor": "rector --dry-run",
"test:types": "phpstan analyse --ansi",
"test:type-coverage": "pest --type-coverage --min=90",
"test:unit": "pest --colors=always",
"test": [
"@test:lint",
"@test:refactor",
"@test:types",
"@test:unit",
"@test:type-coverage"
]
}
}