Skip to content

Commit

Permalink
feat: iniciar projeto PHP
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreBellas committed Dec 17, 2023
1 parent 945c22d commit 9272de4
Show file tree
Hide file tree
Showing 23 changed files with 14,079 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,6 @@ dist
# TernJS port file
.tern-port

# NPM package lock file
package-lock.json

# TS build output
lib/

Expand Down
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"agrupadores",
"aliquota",
"Amazônia",
"autoload",
"borderô",
"Borderos",
"borderôs",
Expand All @@ -19,6 +20,7 @@
"Customizados",
"Eletrônicas",
"Frotista",
"guzzlehttp",
"ICMS",
"ICMSST",
"ICRT",
Expand Down
2 changes: 2 additions & 0 deletions php/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Dependencies
vendor/
24 changes: 24 additions & 0 deletions php/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "alebatistella/bling-erp-api",
"description": "Pacote de integração com a API do Bling ERP",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"AleBatistella\\BlingErpApi\\": "src/",
"AleBatistella\\BlingErpApi\\Entities\\Shared": "src/entities/@shared"
}
},
"authors": [
{
"name": "Alexandre Batistella Bellas",
"email": "[email protected]"
}
],
"require": {
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"laravel/laravel": "^10.2"
}
}
Loading

0 comments on commit 9272de4

Please sign in to comment.