-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
58 lines (58 loc) · 1.48 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
{
"name": "jetimob/notafacil-sdk-php-laravel",
"description": "",
"keywords": ["laravel", "sdk", "nota facil", "NFSe", "nota fiscal"],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Jetimob\\NotaFacil\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jetimob\\NotaFacil\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Alan Weingartner",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Jetimob",
"email": "[email protected]",
"homepage": "https://jetimob.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.0",
"ext-json": "*",
"jetimob/http-php-laravel": "^2",
"illuminate/support": "^9.0 | ^10.0",
"illuminate/console": "^9.0 | ^10.0",
"illuminate/container": "^9.0 | ^10.0"
},
"require-dev": {
"orchestra/testbench": "^7.6.1",
"phpunit/phpunit": "^9.5 | ^10.0"
},
"support": {
"issues": "https://github.com/jetimob/notafacil-sdk-php-laravel/issues"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Jetimob\\NotaFacil\\NotaFacilServiceProvider"
],
"aliases": {
"NotaFacil": "Jetimob\\NotaFacil\\Facades\\NotaFacil"
}
}
}
}