-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
90 lines (90 loc) · 2.48 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "mediact/testing-suite",
"description": "Contains MediaCT's default testing packages.",
"type": "composer-plugin",
"license": "MIT",
"prefer-stable": true,
"minimum-stability": "stable",
"abandoned": "youwe/testing-suite",
"authors": [
{
"name": "MediaCT B.V.",
"email": "[email protected]"
},
{
"name": "Len Lorijn",
"role": "developer"
},
{
"name": "Jan-Marten de Boer",
"role": "developer"
}
],
"require": {
"php": "^7.1",
"composer-plugin-api": "^1.1 || ^2.0",
"enlightn/security-checker": "^1.5",
"kint-php/kint": "@stable",
"mediact/coding-standard": "@stable",
"mediact/coding-standard-phpstorm": "@stable",
"mediact/composer-dependency-installer": "^1.0",
"mediact/composer-file-installer": "^1.0",
"mediact/composer-unclog-plugin": "^1.0",
"phpro/grumphp": ">=0.19 <1.0",
"phpstan/phpstan": "@stable",
"phpunit/phpunit": "@stable",
"php-parallel-lint/php-parallel-lint": "^1.2"
},
"require-dev": {
"composer/composer": "@stable",
"mikey179/vfsstream": "@stable"
},
"replace": {
"sensiolabs/security-checker": "*"
},
"bin": [
"bin/mediact-testing-suite"
],
"extra": {
"scripts": {
"post-install-cmd": [
"npm install --save-dev husky lint-staged",
"npx husky install",
"npm set-script prepare \"husky install\"",
"npx husky add .husky/pre-commit \"npx lint-staged\""
]
},
"grumphp": {
"config-default-path": "grumphp.yml"
},
"class": "Mediact\\TestingSuite\\Composer\\Plugin"
},
"autoload": {
"psr-4": {
"Mediact\\TestingSuite\\Composer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Mediact\\TestingSuite\\Composer\\Tests\\": "tests"
}
},
"archive": {
"exclude": [
"/tests",
"/.gitignore",
"/.gitattributes",
"/phpstan.neon",
"/phpcs.xml",
"/phpmd.xml",
"/phpunit.xml"
]
},
"config": {
"allow-plugins": {
"mediact/coding-standard-phpstorm": true,
"mediact/composer-unclog-plugin": true,
"phpro/grumphp": true
}
}
}