-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from LinkNacional/dev
1.6.0 Correções de bugs e adição de informações de cartão nos detalhes do pedido
- Loading branch information
Showing
32 changed files
with
3,958 additions
and
1,012 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,94 +1,95 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the | ||
{ | ||
"name": "PHP", | ||
"image": "mcr.microsoft.com/vscode/devcontainers/php:7.4", | ||
// https: //github.com/devcontainers/images/tree/main/src/php | ||
"image": "mcr.microsoft.com/vscode/devcontainers/php:8.1", | ||
"mounts": [ | ||
{ | ||
// path in your local machine where WordPress is. | ||
"source": "/home/{yourusername}/projects/_wordpress", | ||
"target": "/home/vscode/_wordpress", | ||
"source": "/path/to/your/wordpress-stubs", | ||
"target": "/home/vscode/wordpress", | ||
"type": "bind" | ||
} | ||
], | ||
"features": { | ||
// https://github.com/devcontainers/features/tree/main/src/node | ||
"ghcr.io/devcontainers/features/node:1": { | ||
"version": "18.14.0", | ||
"nvmVersion": "0.39.3" | ||
} | ||
}, | ||
"postCreateCommand": "npm install", | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"junstyle.php-cs-fixer", | ||
"bmewburn.vscode-intelephense-client", | ||
"neilbrayfield.php-docblocker", | ||
"bmewburn.vscode-intelephense-client" | ||
"dbaeumer.vscode-eslint" | ||
], | ||
"settings": { | ||
"php-cs-fixer.config": ".php-cs-fixer.php", | ||
"files.eol": "\n", | ||
"files.encoding": "utf8", | ||
"php.suggest.basic": false, | ||
"[smarty]": { | ||
"editor.tabSize": 2 | ||
"[html]": { | ||
"editor.rulers": [ | ||
120 | ||
], | ||
"editor.tabSize": 4 | ||
}, | ||
"[javascript]": { | ||
"editor.defaultFormatter": "junstyle.php-cs-fixer", | ||
"editor.rulers": [ | ||
80, | ||
120 | ||
] | ||
}, | ||
"[php]": { | ||
"editor.indentSize": "tabSize", | ||
"editor.detectIndentation": false, | ||
"editor.defaultFormatter": "junstyle.php-cs-fixer", | ||
"editor.insertSpaces": true, | ||
"editor.tabSize": 4, | ||
"editor.rulers": [ | ||
80, | ||
120 | ||
] | ||
}, | ||
"[smarty]": { | ||
"editor.rulers": [ | ||
120 | ||
], | ||
"editor.tabSize": 4, | ||
"editor.wrappingIndent": "deepIndent", | ||
"editor.wrappingStrategy": "advanced" | ||
}, | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": true | ||
}, | ||
"editor.formatOnSave": true, | ||
"files.encoding": "utf8", | ||
"files.eol": "\n", | ||
"html.format.wrapAttributes": "force-expand-multiline", | ||
"html.format.wrapAttributesIndentSize": 4, | ||
"html.format.wrapLineLength": 120, | ||
"intelephense.completion.maxItems": 10, | ||
"intelephense.environment.documentRoot": "src", | ||
"intelephense.environment.phpVersion": "8.1", | ||
"intelephense.environment.includePaths": [ | ||
"/home/vscode/wordpress" | ||
], | ||
"intelephense.files.associations": [ | ||
"*.php" | ||
], | ||
"namespaceResolver.showMessageOnStatusBar": true, | ||
"namespaceResolver.sortAlphabetically": true, | ||
"namespaceResolver.sortNatural": true, | ||
"namespaceResolver.sortOnSave": true, | ||
"php-cs-fixer.autoFixByBracket": true, | ||
"php-cs-fixer.autoFixBySemicolon": true, | ||
"php-cs-fixer.config": ".php-cs-fixer.php", | ||
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar", | ||
"php-cs-fixer.formatHtml": true, | ||
"php-cs-fixer.onsave": true, | ||
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar", | ||
"php.validate.enable": false, | ||
"php-docblocker.useShortNames": true, | ||
"php-docblocker.qualifyClassNames": true, | ||
"php-docblocker.paramDescription": true, | ||
"php-docblocker.returnGap": true, | ||
"php-docblocker.alignParams": true, | ||
"php-docblocker.alignReturn": true, | ||
"php-docblocker.gap": true, | ||
"php-docblocker.defaultType": "string", | ||
"php-docblocker.classTemplate": { | ||
"message": {}, | ||
"since": { | ||
"content": "@since 1.0.0", | ||
"gapAfter": true, | ||
"gapBefore": true | ||
}, | ||
"link": { | ||
"content": "@link " | ||
} | ||
}, | ||
"php-docblocker.functionTemplate": { | ||
"message": { | ||
"gapAfter": true | ||
}, | ||
"since": { | ||
"content": "@since 1.0.0" | ||
}, | ||
"param": { | ||
"gapBefore": true, | ||
"gapAfter": true | ||
}, | ||
"return": {} | ||
}, | ||
"php-docblocker.propertyTemplate": { | ||
"message": { | ||
"gapAfter": true | ||
}, | ||
"since": { | ||
"content": "@since 1.0.0" | ||
}, | ||
"var": { | ||
"content": "@var ${1:mixed}" | ||
}, | ||
"access": { | ||
"access": "@access " | ||
}, | ||
"link": { | ||
"content": "@link " | ||
} | ||
} | ||
"php-docblocker.useShortNames": true, | ||
"php.suggest.basic": false, | ||
"php.validate.enable": false, | ||
"smarty.highlight": true | ||
} | ||
} | ||
} | ||
} | ||
} |
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,11 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es2021": true | ||
}, | ||
"extends": "standard", | ||
"parserOptions": { | ||
"ecmaVersion": "latest", | ||
"sourceType": "module" | ||
} | ||
} |
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,28 @@ | ||
## Descreva o bug | ||
Uma descrição clara e concisa do que é o bug. | ||
|
||
## Informação do sistema | ||
- PHP: [ex. 8.1] | ||
- WooCommerce: [ex. 8.3.1] | ||
- WordPress: [ex. 6.1] | ||
|
||
## Passos para reproduzir | ||
Etapas para reproduzir o comportamento: | ||
1. Vá para '...' | ||
2. Clique em '....' | ||
3. Role para baixo até '....' | ||
4. Ver erro | ||
|
||
## Comportamento esperado | ||
Uma descrição clara e concisa do que você esperava que acontecesse. | ||
|
||
## Capturas de tela | ||
Se aplicável, adicione capturas de tela para ajudar a explicar seu problema. | ||
|
||
## Critérios de Aceitação | ||
|
||
<!-- Defina as condições que devem ser verdadeiras para encerrar o problema. --> | ||
|
||
- [ ] Algo acontece quando uma ação é executada. | ||
- [ ] Algo não acontece quando uma ação é executada. | ||
- [ ] O comportamento de correção no Componente A não afeta o comportamento existente no Componente B. |
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,16 @@ | ||
## Sua solicitação de recurso está relacionada a um problema? Por favor descreva | ||
Uma descrição clara e concisa de qual é o problema. Ex. Eu sempre fico frustrado quando [...] | ||
|
||
## Descreva a solução que você gostaria | ||
Uma descrição clara e concisa do que você quer que aconteça. | ||
|
||
## Descreva as alternativas que você considerou | ||
Uma descrição clara e concisa de quaisquer soluções ou recursos alternativos que você considerou. | ||
|
||
## Critérios de Aceitação | ||
|
||
<!-- Defina as condições que devem ser verdadeiras para encerrar o problema. --> | ||
|
||
- [ ] Algo acontece quando uma ação é executada. | ||
- [ ] Algo não acontece quando uma ação é executada. | ||
- [ ] O comportamento de correção no Componente A não afeta o comportamento existente no Componente B. |
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,11 @@ | ||
## Changelog | ||
|
||
<!-- Resuma o problema relacionado ou os novos recursos, explique COMO esse PR resolve o problema e POR QUE você fez as escolhas que fez. --> | ||
|
||
- Adicionar nova configuração para... | ||
|
||
## Conferir | ||
- [ ] Atualizar versão hardcoded | ||
- [ ] Atualizar README com notas | ||
- [ ] Atualizar CHANGELOG | ||
- [ ] Notificar @colab com changelog |
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
/.vscode/settings.json | ||
/.devcontainer/devcontainer.json | ||
/.devcontainer/devcontainer.json | ||
node_modules | ||
sftp.json |
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
Oops, something went wrong.