-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
69 lines (69 loc) · 1.83 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
{
"name": "mediact/testing-suite",
"description": "Contains MediaCT's default testing packages.",
"type": "composer-plugin",
"license": "MIT",
"prefer-stable": true,
"minimum-stability": "stable",
"authors": [
{
"name": "MediaCT B.V.",
"email": "contact@mediact.nl"
},
{
"name": "Len Lorijn",
"role": "developer"
},
{
"name": "Jan-Marten de Boer",
"role": "developer"
}
],
"require": {
"php": "^7.1",
"composer-plugin-api": "^1.1",
"kint-php/kint": "~1.0 || ~2.0",
"mediact/coding-standard": "~1.0 || ~2.0",
"mediact/coding-standard-phpstorm": "~1.0",
"mediact/composer-dependency-installer": "^1.0",
"mediact/composer-file-installer": "^1.0",
"mediact/composer-unclog-plugin": "^1.0",
"phpro/grumphp": "~0.1",
"phpstan/phpstan": "~0.1",
"phpunit/phpunit": "~3.7 || ~4.0 || ~5.0 || ~6.0 || ~7.0 || ~8.0"
},
"require-dev": {
"composer/composer": "@stable",
"mikey179/vfsstream": "@stable"
},
"bin": [
"bin/mediact-testing-suite"
],
"extra": {
"grumphp": {
"config-default-path": "config/default/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"
]
}
}