-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathcomposer.json
More file actions
99 lines (99 loc) · 2.51 KB
/
composer.json
File metadata and controls
99 lines (99 loc) · 2.51 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "nfse-nacional/nfse-php",
"description": "This is my package nfse",
"keywords": [
"Nfse",
"nfse"
],
"homepage": "https://github.com/nfse-nacional/nfse-php",
"license": "MIT",
"authors": [
{
"name": "a21ns1g4ts",
"email": "a21ns1g4ts@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.9",
"spatie/data-transfer-object": "^3.9"
},
"require-dev": {
"illuminate/support": "^10.0 || ^11.0 || ^12.0",
"illuminate/translation": "^10.0 || ^11.0 || ^12.0",
"illuminate/validation": "^10.0 || ^11.0 || ^12.0",
"laravel/pint": "^1.0",
"mockery/mockery": "^1.6",
"pestphp/pest": "^2.0",
"phpunit/phpunit": "^10.0",
"brianium/paratest": "^7.3",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"spatie/ray": "^1.28"
},
"suggest": {
"spatie/typescript-transformer": "Opcional (PHP >=8.2) para regenerar o arquivo types/generated.d.ts."
},
"autoload": {
"psr-4": {
"Nfse\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Nfse\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint",
"phpstan": "vendor/bin/phpstan analyse --memory-limit 2G"
},
"config": {
"platform": {
"php": "8.1"
},
"audit": {
"ignore": {
"PKSA-z3gr-8qht-p93v": "*"
}
},
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"archive": {
"exclude": [
"/docs",
"/references",
"/tests",
"/examples",
"/.github",
"/.phpunit.cache",
"*.xml",
"*.yml",
"*.neon",
"*.json",
"*.lock",
"!composer.json",
"*.pdf",
"*.xlsx",
"*.jpg",
"*.png",
"*.ico",
"*.pfx",
"*.zip",
"*.tar",
"*.gz",
"*.rar",
".DS_Store"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}