Skip to content

Commit

Permalink
feat: melhorar estrutura de requisição/resposta
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreBellas committed Dec 26, 2023
1 parent bf13686 commit 3b8405e
Show file tree
Hide file tree
Showing 34 changed files with 2,869 additions and 469 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"@shared": "Shared",
"exceptions": "Error"
},
"material-icon-theme.files.associations": {
"*.spec.php": "test-ts"
},
"cSpell.words": [
"agrupadores",
"aliquota",
Expand Down
1 change: 1 addition & 0 deletions php/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Dependencies
vendor/
.phpunit.cache/
11 changes: 7 additions & 4 deletions php/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
"name": "alebatistella/bling-erp-api",
"description": "Pacote de integração com a API do Bling ERP",
"type": "library",
"version": "0.0.1",
"license": "MIT",
"autoload": {
"psr-4": {
"AleBatistella\\BlingErpApi\\": "src/",
"AleBatistella\\BlingErpApi\\Entities\\Shared": "src/entities/@shared"
"AleBatistella\\BlingErpApi\\": "./src/",
"AleBatistella\\BlingErpApi\\Entities\\Shared\\": "./src/Entities/@shared/"
},
"files": [
"src/Helpers/functions.php"
"./src/Helpers/functions.php"
]
},
"authors": [
Expand All @@ -22,6 +23,8 @@
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"laravel/laravel": "^10.2"
"laravel/laravel": "^10.2",
"phpunit/phpunit": "^10.5",
"fakerphp/faker": "^1.23"
}
}
Loading

0 comments on commit 3b8405e

Please sign in to comment.