This repository has been archived on 2024-04-06. You can view files and clone it, but cannot push or open issues or pull requests.
mocks-drupal-variables/composer.json

33 lines
801 B
JSON

{
"name": "sikofitt/mocks-drupal-variables",
"description": "Mock for drupal variable functions variable_(set,get,del)",
"keywords": ["drupal", "mock", "config"],
"type": "library",
"require": {
"php": ">=5.3"
},
"require-dev": {
"phpunit/phpunit": "~4",
"phpunit/php-code-coverage": "~2"
},
"license": "GPL-3.0",
"authors": [
{
"name": "sikofitt",
"email": "sikofitt@gmail.com",
"role": "developer"
}
],
"autoload": {
"psr-4": {
"Sikofitt\\Mocks\\Drupal\\": "src/Sikofitt/Mocks/Drupal/"
},
"files": ["bootstrap.php"]
},
"autoload-dev": {
"psr-4": {
"Sikofitt\\Tests\\Mocks\\Drupal\\": "tests/"
}
}
}