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