-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 928 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "botzkobg/silverstripe-phpunit9",
"description": "Modified version of the original SapphireTest to run tests with phpunit v. 9",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"phpunit"
],
"license": "BSD-3-Clause",
"require": {
"php": ">=7.3.0",
"silverstripe/framework": "4.5.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0.0",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"classmap": [
"src/PHPUnit_Framework_TestCase.php"
],
"psr-4": {
"HippoStep\\SilverStripePhpUnit9\\": "src/",
"HippoStep\\SilverStripePhpUnit9\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"expose": [
"client/dist"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}