forked from nunomaduro/pest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 1.91 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
{
"name": "nunomaduro/pest",
"description": "The Pest Testing framework.",
"keywords": ["php", "pest", "unit", "integration", "testing"],
"license": "MIT",
"authors": [
{
"name": "Nuno Maduro",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2.0",
"phpunit/phpunit": "^8.1"
},
"autoload": {
"psr-4": {
"NunoMaduro\\Pest\\": "src/"
},
"files": [
"src/bootstrap.php"
]
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"localheinz/phpstan-rules": "^0.10.0",
"nunomaduro/phpinsights": "^1.7",
"phpstan/phpstan": "^0.11.12",
"phpstan/phpstan-strict-rules": "^0.11.1",
"roave/no-floaters": "^1.1",
"symfony/var-dumper": "^4.3.3",
"thecodingmachine/phpstan-strict-rules": "^0.11.2"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist"
},
"bin": [
"bin/pest"
],
"scripts": {
"phpstan":"phpstan analyse --ansi",
"ecs": "ecs check src --ansi --config vendor/symplify/easy-coding-standard/config/set/clean-code.yaml",
"pest": "bin/pest --colors=always",
"insights": "phpinsights analyse --ansi -v --no-interaction --min-quality=95 --min-architecture=90 --min-style=97.8 --disable-security-check",
"tests": [
"@ecs",
"@phpstan",
"@pest",
"@insights"
]
},
"scripts-descriptions": {
"ecs": "Run the ecs tests.",
"phpstan": "Run the phpstan tests.",
"pest": "Run the pest tests against himself.",
"insights": "Run the phpinsights tests.",
"tests": "Run all tests."
}
}