-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: lançar versão 1.0.0 do pacote para PHP (#19)
- Loading branch information
Showing
599 changed files
with
17,239 additions
and
119 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Calculate test coverage | ||
|
||
on: | ||
push: | ||
branches: | ||
- "main" | ||
|
||
jobs: | ||
calculate-coverage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
|
||
- name: Install dependencies | ||
working-directory: ./typescript | ||
run: npm install | ||
|
||
- name: Build project | ||
working-directory: ./typescript | ||
run: npm run build | ||
|
||
- name: Execute tests | ||
working-directory: ./typescript | ||
run: npm run test:coverage | ||
|
||
- name: Send to coveralls | ||
uses: coverallsapp/github-action@v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"name": "alebatistella/bling-erp-api", | ||
"description": "Pacote de integração com a API do Bling ERP", | ||
"type": "library", | ||
"version": "1.0.0", | ||
"license": "MIT", | ||
"autoload": { | ||
"psr-4": { | ||
"AleBatistella\\BlingErpApi\\": "./php/src/", | ||
"AleBatistella\\BlingErpApi\\Entities\\Shared\\": "./php/src/Entities/@shared/" | ||
}, | ||
"files": [ | ||
"./php/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" | ||
} | ||
} |
Oops, something went wrong.