2012-11-03 14:27:44 +13:00
|
|
|
{
|
2017-01-05 11:16:12 +13:00
|
|
|
"name": "silverstripe/environmentcheck",
|
|
|
|
"description": "Provides an API for building environment tests",
|
|
|
|
"license": "BSD-3-Clause",
|
2017-11-10 09:25:17 +13:00
|
|
|
"type": "silverstripe-vendormodule",
|
2021-05-05 11:17:25 +12:00
|
|
|
"keywords": [
|
|
|
|
"silverstripe",
|
|
|
|
"testing",
|
|
|
|
"environment",
|
|
|
|
"check"
|
|
|
|
],
|
2017-01-05 11:16:12 +13:00
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Will Rossiter",
|
|
|
|
"email": "will@fullscreen.io"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Sam Minnee",
|
|
|
|
"email": "sam@silverstripe.com"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2022-12-19 11:49:04 +13:00
|
|
|
"php": "^8.1",
|
|
|
|
"silverstripe/framework": "^5",
|
|
|
|
"silverstripe/versioned": "^2",
|
|
|
|
"guzzlehttp/guzzle": "^7"
|
2017-01-05 11:16:12 +13:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2021-10-27 18:06:29 +13:00
|
|
|
"phpunit/phpunit": "^9.5",
|
2022-12-19 11:49:04 +13:00
|
|
|
"squizlabs/php_codesniffer": "^3"
|
2017-01-05 11:16:12 +13:00
|
|
|
},
|
2021-05-05 11:17:25 +12:00
|
|
|
"extra": [],
|
2017-01-05 11:16:12 +13:00
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
2017-08-25 15:19:45 +12:00
|
|
|
"SilverStripe\\EnvironmentCheck\\": "src/",
|
2017-01-05 11:16:12 +13:00
|
|
|
"SilverStripe\\EnvironmentCheck\\Tests\\": "tests/"
|
|
|
|
}
|
2017-08-25 15:31:18 +12:00
|
|
|
},
|
|
|
|
"minimum-stability": "dev",
|
|
|
|
"prefer-stable": true
|
2021-11-08 10:32:34 +13:00
|
|
|
}
|