Example: grunt-php-shield
This plugin requires Grunt ~0.4.5
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-php-shield --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-php-shield');
In your project's Gruntfile, add a section named phpShield
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
phpShield: {
base64: {
options: {
...
},
files: [{
src: ['**'],
dest: 'tmp/app',
cwd: 'test/fixtures/app'
}]
}
},
});
grunt.initConfig({
phpShield: {
base64: {
options: {
log : true,
base64 : true,
encodingLevelStart : 2,
encodingLevelEnd : 5,
notEncode: [ 'css', 'js', 'img', 'view', 'config', 'index.php' ]
},
files: [{
src: ['**'],
dest: 'tmp/app',
cwd: 'test/fixtures/app'
}]
}
}
});
Or use phpShield or Source Guardian
[1] - Sometimes is necessary to use a real path on your destination for phpShield.
grunt.initConfig({
phpShield: {
shield: {
options: {
path_exe: 'D:\\PHPShield\\encoder',
log : false,
V4_0 : false, // phpshield
V5_0 : false, // phpshield
V5_2 : false, // phpshield
V5_3 : false, // phpshield
V5_4 : false, // source guardian
V5_5 : false, // source guardian
V5_6 : false, // source guardian
V7_0 : false, // source guardian
V7_1 : false, // source guardian
V7_2 : false, // source guardian
stop_on_error : false,
strict_errors : false,
is_source_guardian: false
},
files: [{
src: ['**'],
dest: 'D:\\www\\tmp\\app', // [1]
cwd: 'test/fixtures/app'
}]
}
}
});
Type: Boolean
Default value: true
A Boolean value that is used to enabled log.
Type: Boolean
Default value: false
A Boolean value that is used to especific if it is base64 encryption.
Type: Number
Default value: 0
A Number value that is used to especific how often the encryption will be made.
Type: Number
Default value: 0
A Number value that is used to especific how often the encryption will be made.
Type: Array
Default value: null
A Array value that is used to especific what's files/folders not encode.
Type: String
Default value: ``
A string value that is used to especific path .exe.
Type: Boolean
Default value: true
A Boolean value that is used to enabled compiling php version 4.
Type: Boolean
Default value: true
A Boolean value that is used to enabled compiling php version 5.0.
Type: Boolean
Default value: true
A Boolean value that is used to enabled compiling php version 5.2.
Type: Boolean
Default value: true
A Boolean value that is used to enabled compiling php version 5.3.
Type: Boolean
Default value: true
A Boolean value that is used to enabled compiling php version 5.4.
Type: Boolean
Default value: true
A Boolean value that is used to enabled compiling php version 5.5.
Type: Boolean
Default value: true
A Boolean value that is used to enabled compiling php version 5.6.
Type: Boolean
Default value: true
A Boolean value that is used to enabled compiling php version 7.0.
Type: Boolean
Default value: true
A Boolean value that is used to enabled compiling php version 7.1.
Type: Boolean
Default value: true
A Boolean value that is used to enabled compiling php version 7.2.
Type: Boolean
Default value: true
A Boolean value that is used to stop on script compiling errors.
Type: Boolean
Default value: true
A Boolean value that is used to report E_STRICT compiling errors.
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.