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-02-10 04:16:07 +01:00
|
|
|
"php": "^7.4 || ^8.0",
|
2021-10-27 07:06:29 +02:00
|
|
|
"silverstripe/framework": "^4.10",
|
2019-02-14 23:30:51 +01:00
|
|
|
"silverstripe/versioned": "^1.0",
|
2021-11-07 22:32:34 +01:00
|
|
|
"guzzlehttp/guzzle": "^6.3.3 || ^7"
|
2017-01-04 23:16:12 +01:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2021-10-27 07:06:29 +02:00
|
|
|
"phpunit/phpunit": "^9.5",
|
2017-08-25 05:31:18 +02:00
|
|
|
"squizlabs/php_codesniffer": "^3.0"
|
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
|
2021-11-07 22:32:34 +01:00
|
|
|
}
|