-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
55 lines (55 loc) · 1.31 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "dhensby/silverstripe-masquerade",
"description": "SilverStripe module to allow you to masquerade as other users",
"type": "silverstripe-vendormodule",
"require": {
"silverstripe/framework": "^5"
},
"require-dev": {
"phpunit/phpunit": "*",
"squizlabs/php_codesniffer": "^3.7"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true
}
},
"scripts": {
"lint": "phpcs src/ tests/",
"lint:fix": "phpcbf src/ tests/",
"test": "phpunit tests"
},
"autoload": {
"psr-4": {
"DHensby\\SilverStripeMasquerade\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DHensby\\SilverStripeMasquerade\\Test\\": "tests/"
}
},
"license": "ISC",
"authors": [
{
"name": "Dan Hensby",
"email": "[email protected]"
}
],
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/recipe-plugin": true,
"silverstripe/vendor-plugin": true,
"php-http/discovery": true
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}