-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.16 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
{
"name": "adam.zurek/dixons-test",
"description": "Dixons test",
"minimum-stability": "dev",
"license": ["MIT"],
"authors": [
{
"name": "Adam Žurek",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"ext-mbstring": "*",
"nette/utils": "^2.5"
},
"require-dev": {
"consistence/coding-standard": "^3.0",
"phpstan/phpstan": "dev-master",
"phpstan/phpstan-nette": "dev-master",
"phpstan/phpstan-phpunit": "dev-master",
"phpstan/phpstan-strict-rules": "dev-master",
"phpunit/phpunit": "^7.2.0",
"roave/security-advisories": "dev-master",
"spell-checker/spell-checker": "^0.3"
},
"autoload": {
"psr-4": {
"DixonsTest\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"DixonsTest\\": ["tests/"]
}
},
"scripts": {
"all": [
"@cs",
"@stan",
"@tests"
],
"cs": "phpcs --extensions=php --encoding=utf8 --tab-width=4 -sp src tests",
"tests": "phpunit",
"stan": "phpstan analyse --level=max src tests"
},
"config": {
"classmap-authoritative": true,
"platform": {
"php": "7.2.6"
}
}
}