-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
41 lines (41 loc) · 1.07 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
{
"name": "alebatistella/bling-erp-api",
"description": "Pacote de integração com a API do Bling ERP",
"type": "library",
"version": "1.17.0",
"license": "MIT",
"autoload": {
"psr-4": {
"AleBatistella\\BlingErpApi\\": "./src/",
"AleBatistella\\BlingErpApi\\Entities\\Shared\\": "./src/Entities/@shared/",
"AleBatistella\\BlingErpApi\\Entities\\ContasPagar\\Schema\\Shared\\": "./src/Entities/ContasPagar/Schema/@shared/",
"AleBatistella\\BlingErpApi\\Entities\\ContasReceber\\Schema\\Shared\\": "./src/Entities/ContasReceber/Schema/@shared/"
},
"files": [
"./src/Helpers/functions.php"
]
},
"authors": [
{
"name": "Alexandre Batistella Bellas",
"email": "[email protected]"
}
],
"require": {
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"laravel/laravel": "^10.2",
"phpunit/phpunit": "^10.5",
"fakerphp/faker": "^1.23"
},
"archive": {
"exclude": [
"./.github",
"./.vscode",
"./.editorconfig",
"./.gitignore",
"./CONTRIBUTING.md"
]
}
}