silverstripe-environmentcheck/composer.json

41 lines
1.0 KiB
JSON
Raw Normal View History

2012-11-03 02:27:44 +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"
],
"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",
"silverstripe/framework": "^4.10",
"silverstripe/versioned": "^1.0",
2021-11-07 22:32:34 +01:00
"guzzlehttp/guzzle": "^6.3.3 || ^7"
},
"require-dev": {
2021-10-27 07:06:29 +02:00
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.0"
},
2021-05-05 01:17:25 +02:00
"extra": [],
"autoload": {
"psr-4": {
"SilverStripe\\EnvironmentCheck\\": "src/",
"SilverStripe\\EnvironmentCheck\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
2023-03-10 00:21:31 +01:00
}