forked from leanphp/phpspec-code-coverage
-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
82 lines (82 loc) · 2.37 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
{
"name": "friends-of-phpspec/phpspec-code-coverage",
"description": "Generate Code Coverage reports for PhpSpec tests",
"license": "MIT",
"type": "library",
"keywords": [
"phpspec",
"coverage",
"report",
"test",
"tests",
"code-coverage",
"spec"
],
"authors": [
{
"name": "ek9",
"email": "dev@ek9.co",
"homepage": "https://ek9.co"
},
{
"name": "Henrik Bjornskov"
},
{
"name": "Stéphane Hulard",
"email": "s.hulard@chstudio.fr",
"homepage": "https://chstudio.fr"
},
{
"name": "Pol Dellaiera",
"email": "pol.dellaiera@protonmail.com",
"homepage": "https://not-a-number.io/"
},
{
"name": "Jay Linski",
"homepage": "https://github.com/jaylinski"
}
],
"homepage": "https://github.com/friends-of-phpspec/phpspec-code-coverage",
"support": {
"issues": "https://github.com/friends-of-phpspec/phpspec-code-coverage/issues",
"source": "https://github.com/friends-of-phpspec/phpspec-code-coverage",
"docs": "https://github.com/friends-of-phpspec/phpspec-code-coverage#phpspec-code-coverage"
},
"require": {
"php": ">= 7.3",
"phpspec/phpspec": "^6.0 || ^7.0",
"phpunit/php-code-coverage": "^9.2 || ^10.0 || ^11.0",
"phpunit/php-file-iterator": "^3.0 || ^4.0 || ^5.0"
},
"require-dev": {
"phpstan/phpstan": "^1.5",
"friendsofphp/php-cs-fixer": "^3.4"
},
"conflict": {
"sebastian/comparator": "< 2.0"
},
"suggest": {
"ext-pcov": "Install PCov extension to generate code coverage.",
"ext-xdebug": "Install Xdebug to generate phpspec code coverage."
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"FriendsOfPhpSpec\\PhpSpec\\CodeCoverage\\": "src/"
},
"files": [
"src/bootstrap.php"
]
},
"scripts": {
"analyse": "phpstan analyse",
"lint": "php-cs-fixer fix --dry-run src && php-cs-fixer fix --dry-run spec",
"test": "phpspec run --no-coverage",
"test-coverage": "phpspec run"
},
"extra": {
"branch-alias": {
"dev-master": "6.x-dev"
}
}
}