Skip to content

Commit

Permalink
Merge pull request #79 from nfe/compliance
Browse files Browse the repository at this point in the history
- Testado Plugin para compatibilidade com WordPress 6 #74
- Removido pastas desnecessárias presentes no plugin #75
- Higienização, escape e validação de dados #76
- Variáveis ​​e opções com scape quando houver echo #77
- Melhorada as referências aos arquivos locais #78
  • Loading branch information
andrekutianski authored Oct 25, 2023
2 parents cf5fc40 + 7530b2e commit f89db4b
Show file tree
Hide file tree
Showing 25 changed files with 3,010 additions and 4,180 deletions.
419 changes: 379 additions & 40 deletions .gitignore

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
module.exports = function(grunt) {
module.exports = grunt => {
require('load-grunt-tasks')(grunt);

grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),

Expand Down Expand Up @@ -33,6 +35,4 @@ module.exports = function(grunt) {
}
}
});

require('load-grunt-tasks')(grunt);
}
};
11 changes: 10 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,15 @@
"require-dev": {
"phpunit/phpunit": "^7.5.20",
"phpunit/php-code-coverage": "^6.1.4",
"friends-of-phpspec/phpspec-code-coverage": "^4.3"
"friends-of-phpspec/phpspec-code-coverage": "^4.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"phpcompatibility/php-compatibility": "^9.3",
"wp-coding-standards/wpcs": "^2.3"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}
Loading

0 comments on commit f89db4b

Please sign in to comment.