
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
grunt-php-config
Advanced tools
Builds a PHP config and constants file
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-config --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-php-config');
In your project's Gruntfile, add a section named php_config
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
php_config: {
options: {
// Task-specific options go here.
},
your_target: {
// Target-specific file lists and/or options go here.
},
},
});
Type: String
Default value: php
The type of file which will be generated
php
types create constants like define('\\NAMESPACE\\NAME', 'VALUE');
Type: Object
Default value: {}
This is where all the constants are specified.
The key of the member will be the constant name, while the value can be either a string, or an object with the member value
.
{
name: "value",
build: {
value: "1.2"
}
}
Other options may be specified in a specific constant.
A generated file the constants will be a float and may look like this define('BUILD', 1.2);
, (if the type
is set to php
).
{
name: "value",
build: {
value: "1.2",
raw: true
}
}
Constants may also be nested, to create namespaces.
The following constants object will create the constant \URL\STATIC\IMAGE
and set it to FOO
.
{
url: {
static: {
image: "FOO"
}
}
}
Type: Boolean
Default value: true
Should the constant be in all capitals
Type: Boolean
Default value: false
Typically constant values are escaped and put in quotes. However, if this is true the constant's value will be untouched.
In this example, an empty destination.php
file will be generated because no constants are specified.
grunt.initConfig({
php_config: {
dest: 'destination.php',
},
});
In this example constants will be read from the config.json file and be embedded into destination.php
as is.
grunt.initConfig({
php_config: {
options: {
constants: grunt.file.readJSON('config.json'),
raw: true,
allCaps: false,
},
dest: 'destination.php',
},
});
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.
FAQs
Builds a PHP config and constants file
We found that grunt-php-config demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.