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

34 lines
791 B
JSON
Raw Normal View History

2016-08-05 15:01:21 -07:00
{
"name": "sikofitt/mocks-drupal-variables",
"description": "Mock for drupal variable functions variable_(set,get,del)",
"type": "library",
"require": {
2016-08-05 20:14:59 -07:00
"php": ">=5.4",
"hassankhan/config": "~0.10",
"symfony/filesystem": "^3.1"
2016-08-05 15:01:21 -07:00
},
"require-dev": {
"phpunit/phpunit": "^5.5"
},
"license": "GPL-3.0",
"authors": [
{
"name": "sikofitt",
2016-08-05 20:14:59 -07:00
"email": "sikofitt@gmail.com",
"role": "developer"
2016-08-05 15:01:21 -07:00
}
],
"autoload": {
"psr-4": {
2016-08-05 20:14:59 -07:00
"Sikofitt\\Mocks\\Drupal\\": "src/Sikofitt/Mocks/Drupal/"
2016-08-05 15:01:21 -07:00
},
"files": ["bootstrap.php"]
2016-08-05 20:14:59 -07:00
},
"autoload-dev": {
"psr-4": {
"Sikofitt\\Tests\\Mocks\\Drupal\\": "tests/"
}
2016-08-05 15:01:21 -07:00
}
}